Dep cleanup

This commit is contained in:
MattIPv4
2020-05-27 14:17:24 +01:00
parent 2f6ad2634e
commit 5a4714cb40
3 changed files with 1333 additions and 1432 deletions

View File

@@ -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;
});
},
}
};