blob: d5191f1555c5bd8d4732d56b203253e3ee02caae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
const StringReplacePlugin = require('string-replace-webpack-plugin');
import constant from './const';
import hoist from './hoist';
import minify from './minify';
import banner from './banner';
const env = process.env.NODE_ENV;
const isProduction = env === 'production';
export default version => {
const plugins = [
constant(),
new StringReplacePlugin(),
hoist()
];
if (isProduction) {
plugins.push(minify());
}
plugins.push(banner(version));
return plugins;
};
|