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

Commit

Permalink
Lock file maintenance (#1490)
Browse files Browse the repository at this point in the history
And:
* Update copy plugin test to pass valid options
   Since `copy-webpack-plugin` now validates the patterns passed, as of:
   webpack-contrib/copy-webpack-plugin/pull/419
* Bump in-range dependency versions
   Bumping the versions in theory shouldn't be necessary, however package
   managers tend to only update sub-dependencies lazily, so this ensures
   users are on the latest versions.

   Changes made using the approach described here:
   #1356 (comment)
  • Loading branch information
renovate[bot] authored and edmorley committed Dec 13, 2019
1 parent 3b0ab17 commit 2d8672b
Show file tree
Hide file tree
Showing 24 changed files with 1,214 additions and 1,227 deletions.
14 changes: 7 additions & 7 deletions package.json
Expand Up @@ -41,19 +41,19 @@
"devDependencies": {
"auto-changelog": "^1.16.2",
"ava": "^1.4.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"husky": "^3.1.0",
"jest": "^24.9.0",
"karma": "^4.4.1",
"karma-cli": "^2.0.0",
"lerna": "^3.18.4",
"lint-staged": "^9.4.2",
"lerna": "^3.19.0",
"lint-staged": "^9.5.0",
"mocha": "^6.2.2",
"prettier": "^1.19.1",
"verdaccio": "^4.3.4",
"verdaccio-memory": "^8.3.0",
"verdaccio": "^4.3.5",
"verdaccio-memory": "^8.4.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/airbnb-base/package.json
Expand Up @@ -29,7 +29,7 @@
"dependencies": {
"@neutrinojs/eslint": "9.0.0-rc.5",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2"
"eslint-plugin-import": "^2.19.1"
},
"peerDependencies": {
"eslint": "^6.0.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/airbnb/package.json
Expand Up @@ -30,10 +30,10 @@
"@neutrinojs/eslint": "9.0.0-rc.5",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0"
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0"
},
"peerDependencies": {
"eslint": "^6.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/compile-loader/package.json
Expand Up @@ -27,7 +27,7 @@
"yarn": ">=1.2.1"
},
"dependencies": {
"@babel/core": "^7.7.2",
"@babel/core": "^7.7.5",
"babel-loader": "^8.0.6"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/copy/package.json
Expand Up @@ -27,7 +27,7 @@
"yarn": ">=1.2.1"
},
"dependencies": {
"copy-webpack-plugin": "^5.0.5"
"copy-webpack-plugin": "^5.1.1"
},
"peerDependencies": {
"neutrino": "9.0.0-rc.5",
Expand Down
5 changes: 4 additions & 1 deletion packages/copy/test/middleware_test.js
Expand Up @@ -2,7 +2,10 @@ import test from 'ava';
import Neutrino from '../../neutrino/Neutrino';

const mw = (...args) => require('..')(...args);
const options = { patterns: [{}], options: { ignore: /\.css$/ } };
const options = {
patterns: ['shorthand-form', { from: 'source', to: 'dest' }],
options: { ignore: /\.css$/ },
};

test('loads middleware', t => {
t.notThrows(() => require('..'));
Expand Down
4 changes: 2 additions & 2 deletions packages/create-project/package.json
Expand Up @@ -41,10 +41,10 @@
"dependencies": {
"chalk": "^3.0.0",
"deepmerge": "^1.5.2",
"ejs": "^3.0.0",
"ejs": "^3.0.1",
"fs-extra": "^8.1.0",
"javascript-stringify": "^2.0.1",
"yargs": "^15.0.0",
"yargs": "^15.0.2",
"yeoman-environment": "^2.6.0",
"yeoman-generator": "^4.2.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint/package.json
Expand Up @@ -28,7 +28,7 @@
},
"dependencies": {
"babel-eslint": "^10.0.3",
"eslint-loader": "^3.0.2",
"eslint-loader": "^3.0.3",
"eslint-plugin-babel": "^5.3.0"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/font-loader/package.json
Expand Up @@ -26,7 +26,7 @@
"yarn": ">=1.2.1"
},
"dependencies": {
"file-loader": "^5.0.0"
"file-loader": "^5.0.2"
},
"peerDependencies": {
"neutrino": "9.0.0-rc.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/image-loader/package.json
Expand Up @@ -26,7 +26,7 @@
"yarn": ">=1.2.1"
},
"dependencies": {
"file-loader": "^5.0.0",
"file-loader": "^5.0.2",
"url-loader": "^3.0.0"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/jest/package.json
Expand Up @@ -26,11 +26,11 @@
"yarn": ">=1.2.1"
},
"dependencies": {
"@babel/core": "^7.7.2",
"@babel/core": "^7.7.5",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"deepmerge": "^1.5.2",
"eslint-plugin-jest": "^23.0.3",
"eslint-plugin-jest": "^23.1.1",
"lodash.omit": "^4.5.0"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/karma/package.json
Expand Up @@ -26,7 +26,7 @@
"yarn": ">=1.2.1"
},
"dependencies": {
"@babel/core": "^7.7.2",
"@babel/core": "^7.7.5",
"babel-merge": "^3.0.0",
"babel-plugin-istanbul": "^5.2.0",
"deepmerge": "^1.5.2",
Expand Down
6 changes: 3 additions & 3 deletions packages/library/package.json
Expand Up @@ -34,9 +34,9 @@
"yarn": ">=1.2.1"
},
"dependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.7.1",
"@babel/core": "^7.7.5",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@neutrinojs/banner": "9.0.0-rc.5",
"@neutrinojs/clean": "9.0.0-rc.5",
"@neutrinojs/compile-loader": "9.0.0-rc.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/migrate/package.json
Expand Up @@ -32,6 +32,6 @@
"dependencies": {
"camelcase": "^5.3.1",
"jscodeshift": "^0.7.0",
"yargs": "^15.0.0"
"yargs": "^15.0.2"
}
}
6 changes: 3 additions & 3 deletions packages/mocha/package.json
Expand Up @@ -24,9 +24,9 @@
"yarn": ">=1.2.1"
},
"dependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-transform-modules-commonjs": "^7.7.0",
"@babel/register": "^7.7.0",
"@babel/core": "^7.7.5",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/register": "^7.7.4",
"babel-merge": "^3.0.0",
"deepmerge": "^1.5.2",
"lodash.omit": "^4.5.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/neutrino/package.json
Expand Up @@ -31,7 +31,7 @@
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"semver": "^6.3.0",
"webpack-chain": "^6.0.0",
"webpack-chain": "^6.1.0",
"yargs-parser": "^16.1.0"
}
}
6 changes: 3 additions & 3 deletions packages/node/package.json
Expand Up @@ -27,9 +27,9 @@
"yarn": ">=1.2.1"
},
"dependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.7.1",
"@babel/core": "^7.7.5",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@neutrinojs/banner": "9.0.0-rc.5",
"@neutrinojs/clean": "9.0.0-rc.5",
"@neutrinojs/compile-loader": "9.0.0-rc.5",
Expand Down
10 changes: 5 additions & 5 deletions packages/preact/package.json
Expand Up @@ -28,16 +28,16 @@
"yarn": ">=1.2.1"
},
"dependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-transform-react-jsx": "^7.7.0",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-react-jsx": "^7.7.4",
"@neutrinojs/web": "9.0.0-rc.5",
"babel-merge": "^3.0.0",
"deepmerge": "^1.5.2",
"eslint-plugin-react": "^7.16.0"
"eslint-plugin-react": "^7.17.0"
},
"devDependencies": {
"preact": "^10.0.5"
"preact": "^10.1.0"
},
"peerDependencies": {
"neutrino": "9.0.0-rc.5",
Expand Down
16 changes: 8 additions & 8 deletions packages/react/package.json
Expand Up @@ -28,20 +28,20 @@
"yarn": ">=1.2.1"
},
"dependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/preset-react": "^7.7.0",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@neutrinojs/web": "9.0.0-rc.5",
"babel-merge": "^3.0.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"deepmerge": "^1.5.2",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0"
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0"
},
"devDependencies": {
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-hot-loader": "^4.12.16"
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-hot-loader": "^4.12.18"
},
"peerDependencies": {
"neutrino": "9.0.0-rc.5",
Expand Down
4 changes: 2 additions & 2 deletions packages/standardjs/package.json
Expand Up @@ -31,10 +31,10 @@
"@neutrinojs/eslint": "9.0.0-rc.5",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-standard": "^4.0.1"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/style-loader/package.json
Expand Up @@ -28,10 +28,10 @@
"yarn": ">=1.2.1"
},
"dependencies": {
"css-loader": "^3.2.0",
"css-loader": "^3.3.2",
"deepmerge": "^1.5.2",
"mini-css-extract-plugin": "^0.8.0",
"style-loader": "^1.0.0"
"style-loader": "^1.0.1"
},
"peerDependencies": {
"neutrino": "9.0.0-rc.5",
Expand Down
6 changes: 3 additions & 3 deletions packages/vue/package.json
Expand Up @@ -22,10 +22,10 @@
},
"dependencies": {
"@neutrinojs/web": "9.0.0-rc.5",
"css-loader": "^3.2.0",
"css-loader": "^3.3.2",
"deepmerge": "^1.5.2",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-vue": "^6.0.0",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-vue": "^6.0.1",
"vue-loader": "^15.7.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10"
Expand Down
6 changes: 3 additions & 3 deletions packages/web/package.json
Expand Up @@ -27,9 +27,9 @@
"yarn": ">=1.2.1"
},
"dependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.7.1",
"@babel/core": "^7.7.5",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@neutrinojs/clean": "9.0.0-rc.5",
"@neutrinojs/compile-loader": "9.0.0-rc.5",
"@neutrinojs/dev-server": "9.0.0-rc.5",
Expand Down

0 comments on commit 2d8672b

Please sign in to comment.