Skip to content

Commit 5fae802

Browse files
authored
Merge pull request webpack#5920 from webpack/feature/next-update-deps-and-lint
chore(deps): update all minor and patch deps, remove lint errors
2 parents c10d1c1 + fb15738 commit 5fae802

File tree

6 files changed

+393
-218
lines changed

6 files changed

+393
-218
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ module.exports = {
5151
}],
5252
"no-console": "off",
5353
"valid-jsdoc": "error",
54-
"node/no-unsupported-features": ["error", { version: 4 }],
54+
"node/no-unsupported-features": "error",
5555
"node/no-deprecated-api": "error",
5656
"node/no-missing-import": "error",
5757
"node/no-missing-require": [

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ matrix:
2424
- os: linux
2525
node_js: "6"
2626
env: NO_WATCH_TESTS=1 JOB_PART=integration
27-
- os: linux
28-
node_js: "4"
29-
env: NO_WATCH_TESTS=1 JOB_PART=integration
3027
- os: osx
3128
node_js: "8"
3229
env: NO_WATCH_TESTS=1 JOB_PART=integration

circle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ machine:
88

99
dependencies:
1010
pre:
11-
- case $CIRCLE_NODE_INDEX in 0) NODE_VERSION=4 ;; 1) NODE_VERSION=8 ;; esac; nvm install $NODE_VERSION && nvm alias default $NODE_VERSION
11+
- case $CIRCLE_NODE_INDEX in 0) NODE_VERSION=6 ;; 1) NODE_VERSION=8 ;; esac; nvm install $NODE_VERSION && nvm alias default $NODE_VERSION
1212
override:
1313
- yarn
1414
- yarn link || true && yarn link webpack

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"worker-loader": "^0.8.0"
7070
},
7171
"engines": {
72-
"node": ">=4.3.0 <5.0.0 || >=5.10"
72+
"node": ">=6.11.5"
7373
},
7474
"repository": {
7575
"type": "git",

test/configCases/extract-text/issue-14/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var should = require("should");
1+
require("should");
22
var path = require("path");
33
var fs = require("fs");
44

0 commit comments

Comments
 (0)