Skip to content
This repository was archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Lock file maintenance (#101)
Browse files Browse the repository at this point in the history
Plus:

* Fix test failure due to webpack schema change

A mistake in the webpack options schema was fixed (webpack/webpack#7232)
thereby meaning that non-absolute include/exclude paths are now
correctly a validation error.

* Bump in-range package.json deps and refresh lockfile again

* Sync package.json lint command options with Neutrino
  • Loading branch information
renovate[bot] authored and edmorley committed Oct 2, 2018
1 parent 75c8463 commit c2d0834
Show file tree
Hide file tree
Showing 3 changed files with 1,046 additions and 260 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"license": "MPL-2.0",
"scripts": {
"test": "ava test",
"lint": "eslint src test .eslintrc.js",
"lint": "eslint --cache --report-unused-disable-directives --format codeframe \".*.js\" src test",
"changelog": "changelog neutrinojs/webpack-chain all --markdown > CHANGELOG.md"
},
"dependencies": {
Expand All @@ -26,14 +26,14 @@
},
"devDependencies": {
"ava": "^0.25.0",
"changelog": "^1.4.0",
"eslint": "^5.3.0",
"changelog": "^1.4.2",
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-ava": "^5.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-ava": "^5.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"prettier": "^1.12.1",
"webpack": "^4.5.0"
"eslint-plugin-prettier": "^2.7.0",
"prettier": "^1.14.3",
"webpack": "^4.20.2"
}
}
8 changes: 4 additions & 4 deletions test/Config.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,11 +208,11 @@ test('validate with values', t => {
.use(require.resolve('webpack/lib/EnvironmentPlugin'), [{ VAR: false }])
.end()
.module.rule('compile')
.include.add('alpha')
.add('beta')
.include.add('/alpha')
.add('/beta')
.end()
.exclude.add('alpha')
.add('beta')
.exclude.add('/alpha')
.add('/beta')
.end()
.sideEffects(false)
.post()
Expand Down
Loading

0 comments on commit c2d0834

Please sign in to comment.