webpack 3.8.0 → 3.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "webpack",
3
- "version": "3.8.0",
3
+ "version": "3.10.0",
4
4
  "author": "Tobias Koppers @sokra",
5
5
  "description": "Packs CommonJs/AMD modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jsx, es7, css, less, ... and your custom stuff.",
6
6
  "dependencies": {
@@ -33,7 +33,6 @@
33
33
  "benchmark": "^2.1.1",
34
34
  "bundle-loader": "~0.5.0",
35
35
  "codacy-coverage": "^2.0.1",
36
- "codecov.io": "^0.1.2",
37
36
  "coffee-loader": "~0.7.1",
38
37
  "coffee-script": "^1.10.0",
39
38
  "coveralls": "^2.11.2",
@@ -44,6 +43,7 @@
44
43
  "express": "~4.13.1",
45
44
  "extract-text-webpack-plugin": "^3.0.0",
46
45
  "file-loader": "^0.11.2",
46
+ "glob": "^7.1.2",
47
47
  "i18n-webpack-plugin": "^1.0.0",
48
48
  "istanbul": "^0.4.5",
49
49
  "jade": "^1.11.0",
@@ -58,6 +58,7 @@
58
58
  "raw-loader": "~0.5.0",
59
59
  "react": "^15.2.1",
60
60
  "react-dom": "^15.2.1",
61
+ "rimraf": "^2.6.2",
61
62
  "script-loader": "~0.7.0",
62
63
  "should": "^11.1.1",
63
64
  "simple-git": "^1.65.0",
@@ -89,24 +90,34 @@
89
90
  "schemas/"
90
91
  ],
91
92
  "scripts": {
92
- "test": "mocha test/*.test.js --max-old-space-size=4096 --harmony --check-leaks",
93
- "travis:test": "npm run cover:min",
93
+ "test": "mocha test/*.test.js test/*.unittest.js --max-old-space-size=4096 --harmony --trace-deprecation --check-leaks",
94
+ "test:integration": "mocha test/*.test.js --max-old-space-size=4096 --harmony --trace-deprecation --check-leaks",
95
+ "test:unit": "mocha test/*.unittest.js --max-old-space-size=4096 --harmony --trace-deprecation --check-leaks",
96
+ "travis:integration": "npm run cover:init && npm run cover:integration && npm run cover:report-min",
97
+ "travis:unit": "npm run cover:init && npm run cover:unit && npm run cover:report-min",
94
98
  "travis:lint": "npm run lint-files && npm run nsp",
95
99
  "travis:benchmark": "npm run benchmark",
96
- "appveyor:test": "node node_modules\\mocha\\bin\\mocha --max-old-space-size=4096 --harmony test/*.test.js",
100
+ "appveyor:integration": "npm run cover:init && npm run cover:integration && npm run cover:report-min",
101
+ "appveyor:unit": "npm run cover:init && npm run cover:unit && npm run cover:report-min",
97
102
  "appveyor:benchmark": "npm run benchmark",
98
- "circleci:test": "node node_modules/mocha/bin/mocha --max-old-space-size=4096 --harmony test/*.test.js",
103
+ "circleci:test": "node node_modules/mocha/bin/mocha --max-old-space-size=4096 --harmony --trace-deprecation test/*.test.js test/*.unittest.js",
99
104
  "circleci:lint": "npm run lint-files && npm run nsp",
100
105
  "build:examples": "cd examples && node buildAll.js",
101
106
  "pretest": "npm run lint-files",
102
- "lint-files": "npm run lint && npm run beautify-lint",
107
+ "lint-files": "npm run lint && npm run beautify-lint && npm run schema-lint",
103
108
  "lint": "eslint lib bin hot buildin \"test/**/webpack.config.js\" \"test/binCases/**/test.js\" \"examples/**/webpack.config.js\"",
104
109
  "fix": "npm run lint -- --fix",
105
110
  "beautify-lint": "beautify-lint \"lib/**/*.js\" \"hot/**/*.js\" \"bin/**/*.js\" \"benchmark/*.js\" \"test/*.js\"",
111
+ "schema-lint": "mocha test/*.lint.js --opts test/lint-mocha.opts",
106
112
  "nsp": "nsp check --output summary",
107
- "benchmark": "mocha --max-old-space-size=4096 --harmony test/*.benchmark.js -R spec",
108
- "cover": "node --max-old-space-size=4096 --harmony ./node_modules/istanbul/lib/cli.js cover -x '**/*.runtime.js' node_modules/mocha/bin/_mocha -- test/*.test.js",
109
- "cover:min": "node --max-old-space-size=4096 --harmony ./node_modules/istanbul/lib/cli.js cover -x '**/*.runtime.js' --report lcovonly node_modules/mocha/bin/_mocha -- test/*.test.js",
113
+ "benchmark": "mocha --max-old-space-size=4096 --harmony --trace-deprecation test/*.benchmark.js -R spec",
114
+ "cover": "npm run cover:init && npm run cover:all && npm run cover:report",
115
+ "cover:init": "rimraf coverage",
116
+ "cover:all": "node --max-old-space-size=4096 --harmony --trace-deprecation ./node_modules/istanbul/lib/cli.js cover --report none node_modules/mocha/bin/_mocha -- test/*.test.js test/*.unittest.js",
117
+ "cover:integration": "node --max-old-space-size=4096 --harmony --trace-deprecation ./node_modules/istanbul/lib/cli.js cover --report none node_modules/mocha/bin/_mocha -- test/*.test.js",
118
+ "cover:unit": "node --max-old-space-size=4096 --harmony --trace-deprecation ./node_modules/istanbul/lib/cli.js cover --report none node_modules/mocha/bin/_mocha -- test/*.unittest.js",
119
+ "cover:report": "istanbul report",
120
+ "cover:report-min": "istanbul report --report lcovonly",
110
121
  "publish-patch": "npm run lint && npm run beautify-lint && mocha && npm version patch && git push && git push --tags && npm publish"
111
122
  }
112
123
  }