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

Lock file maintenance #101

Merged
merged 4 commits into from
Oct 2, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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