chore: npm audit fix as of 2020-08-15 (#10613)

* chore: npm audit fix as of 2020-08-15

* --force

* fixing copy-webpack-plugin

* lint

* resolve conflicts
This commit is contained in:
Maxime Beauchemin 2020-08-17 15:27:01 -07:00 committed by GitHub
parent 692266f4f5
commit 0d3caf08e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1560 additions and 709 deletions

File diff suppressed because it is too large Load Diff

View File

@ -137,9 +137,9 @@
"geolib": "^2.0.24", "geolib": "^2.0.24",
"immutable": "^3.8.2", "immutable": "^3.8.2",
"interweave": "^11.2.0", "interweave": "^11.2.0",
"jquery": "^3.4.1", "jquery": "^3.5.1",
"json-bigint": "^0.3.0", "json-bigint": "^0.3.0",
"lodash": "^4.17.15", "lodash": "^4.17.20",
"lodash-es": "^4.17.14", "lodash-es": "^4.17.14",
"mathjs": "^3.20.2", "mathjs": "^3.20.2",
"memoize-one": "^5.1.1", "memoize-one": "^5.1.1",
@ -236,7 +236,7 @@
"babel-plugin-lodash": "^3.3.4", "babel-plugin-lodash": "^3.3.4",
"cache-loader": "^1.2.2", "cache-loader": "^1.2.2",
"clean-webpack-plugin": "^3.0.0", "clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1", "copy-webpack-plugin": "^6.0.3",
"cross-env": "^5.2.0", "cross-env": "^5.2.0",
"css-loader": "^1.0.0", "css-loader": "^1.0.0",
"emotion-ts-plugin": "^0.5.3", "emotion-ts-plugin": "^0.5.3",
@ -289,7 +289,7 @@
"webpack-dev-server": "^3.10.3", "webpack-dev-server": "^3.10.3",
"webpack-manifest-plugin": "^2.2.0", "webpack-manifest-plugin": "^2.2.0",
"webpack-sources": "^1.4.3", "webpack-sources": "^1.4.3",
"yargs": "12 - 15" "yargs": "^15.4.1"
}, },
"optionalDependencies": { "optionalDependencies": {
"fsevents": "^2.0.7" "fsevents": "^2.0.7"

View File

@ -112,14 +112,13 @@ const plugins = [
checkSyntacticErrors: true, checkSyntacticErrors: true,
}), }),
new CopyPlugin( new CopyPlugin({
[ patterns: [
'package.json', 'package.json',
{ from: 'images', to: 'images' }, { from: 'images', to: 'images' },
{ from: 'stylesheets', to: 'stylesheets' }, { from: 'stylesheets', to: 'stylesheets' },
], ],
{ copyUnmodified: true }, }),
),
]; ];
if (!process.env.CI) { if (!process.env.CI) {
plugins.push(new webpack.ProgressPlugin()); plugins.push(new webpack.ProgressPlugin());