blob: 99b16c2b053f69b5d696e733998cf7be51fa7adc (
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
26
27
|
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;
};
|