mirror of
https://github.com/digitalocean/nginxconfig.io
synced 2024-11-10 04:24:12 +00:00
Dep cleanup
This commit is contained in:
parent
2f6ad2634e
commit
5a4714cb40
3 changed files with 1333 additions and 1432 deletions
2754
package-lock.json
generated
2754
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -51,8 +51,9 @@
|
|||
"vue-select": "^3.10.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vue/cli-service": "^4.3.1",
|
||||
"copyfiles": "^2.2.0",
|
||||
"@vue/cli-service": "^4.4.1",
|
||||
"copyfiles": "^2.3.0",
|
||||
"duplicate-package-checker-webpack-plugin": "^3.0.0",
|
||||
"eslint": "^6.8.0",
|
||||
"eslint-plugin-vue": "^5.2.3",
|
||||
"sass": "^1.26.3",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
const path = require('path');
|
||||
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
||||
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
|
||||
const DuplicatePackageCheckerPlugin = require('duplicate-package-checker-webpack-plugin');
|
||||
|
||||
module.exports = {
|
||||
publicPath: './',
|
||||
|
@ -9,6 +10,7 @@ module.exports = {
|
|||
configureWebpack: {
|
||||
plugins: [
|
||||
process.argv.includes('--analyze') && new BundleAnalyzerPlugin(),
|
||||
process.argv.includes('--analyze') && new DuplicatePackageCheckerPlugin(),
|
||||
].filter(x => !!x),
|
||||
},
|
||||
chainWebpack: config => {
|
||||
|
@ -18,4 +20,4 @@ module.exports = {
|
|||
return options;
|
||||
});
|
||||
},
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue