Skip to content

Commit ed39d5f

Browse files
remove unused import from webpack config
1 parent ab6c2bb commit ed39d5f

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

webpack.common.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
const path = require('path');
2-
const TerserPlugin = require('terser-webpack-plugin');
32

43
module.exports = {
54
entry: {

webpack.prod.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ const VERSION = pkg.version;
77
module.exports = env => merge(common, {
88
mode: 'production',
99
output: {
10-
filename: `[name]${env.branch !== 'master' ? `-dev-${env.commit_hash || 'local'}` : `-${VERSION}`}.min.js`
10+
filename: `[name]${env.branch !== 'master' ? `-dev-${VERSION}` : `-${VERSION}`}.min.js`
1111
}
1212
});

0 commit comments

Comments
 (0)