Skip to content

Commit

Permalink
Moved the package to the @jsdevtools scope
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesMessinger committed Mar 5, 2020
1 parent 06dba1e commit 006bf99
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ Istanbul code coverage loader for Webpack
[![Coverage Status](https://coveralls.io/repos/github/JS-DevTools/coverage-istanbul-loader/badge.svg?branch=master)](https://coveralls.io/github/JS-DevTools/coverage-istanbul-loader?branch=master)
[![Dependencies](https://david-dm.org/JS-DevTools/coverage-istanbul-loader.svg)](https://david-dm.org/JS-DevTools/coverage-istanbul-loader)

[![npm](https://img.shields.io/npm/v/coverage-istanbul-loader.svg?maxAge=43200)](https://www.npmjs.com/package/coverage-istanbul-loader)
[![License](https://img.shields.io/npm/l/coverage-istanbul-loader.svg?maxAge=2592000)](LICENSE)
[![npm](https://img.shields.io/npm/v/@jsdevtools/coverage-istanbul-loader.svg?maxAge=43200)](https://www.npmjs.com/package/@jsdevtools/coverage-istanbul-loader)
[![License](https://img.shields.io/npm/l/@jsdevtools/coverage-istanbul-loader.svg?maxAge=2592000)](LICENSE)



Expand Down
2 changes: 1 addition & 1 deletion examples/hello-world/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"license": "MIT",
"devDependencies": {
"coverage-istanbul-loader": "^0.1.0",
"@jsdevtools/coverage-istanbul-loader": "^3.0.0",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/hello-world/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = {
{
test: /\.js/,
exclude: /node_modules/,
use: "coverage-istanbul-loader"
use: "@jsdevtools/coverage-istanbul-loader"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion examples/karma/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = (karma) => karma.set({
test: /\.js/,
include: /src/,
exclude: /node_modules|\.spec\.js$/,
use: "coverage-istanbul-loader"
use: "@jsdevtools/coverage-istanbul-loader"
}
]
},
Expand Down
2 changes: 1 addition & 1 deletion examples/karma/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"coverage-istanbul-loader": "^0.1.0",
"@jsdevtools/coverage-istanbul-loader": "^3.0.0",
"karma": "^4.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/options/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"license": "MIT",
"devDependencies": {
"coverage-istanbul-loader": "^0.1.0",
"@jsdevtools/coverage-istanbul-loader": "^3.0.0",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/options/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = {
test: /\.js/,
exclude: /node_modules/,
use: {
loader: "coverage-istanbul-loader",
loader: "@jsdevtools/coverage-istanbul-loader",
options: {
compact: true
}
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"license": "MIT",
"devDependencies": {
"coverage-istanbul-loader": "^0.1.0",
"@jsdevtools/coverage-istanbul-loader": "^3.0.0",
"ts-loader": "^5.3.3",
"typescript": "^3.3.1",
"webpack": "^4.29.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = {
test: /\.ts/,
exclude: /node_modules/,
use: [
"coverage-istanbul-loader",
"@jsdevtools/coverage-istanbul-loader",
"ts-loader"
]
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "coverage-istanbul-loader",
"name": "@jsdevtools/coverage-istanbul-loader",
"version": "2.0.3",
"description": "A Webpack loader that uses Istanbul to add code coverage instrumentation",
"keywords": [
Expand Down

0 comments on commit 006bf99

Please sign in to comment.