2017-05-16 15:00:56 +00:00
|
|
|
const StringReplacePlugin = require('string-replace-webpack-plugin');
|
|
|
|
|
|
|
|
import constant from './const';
|
2017-06-26 00:04:42 +00:00
|
|
|
import hoist from './hoist';
|
2017-05-25 07:44:44 +00:00
|
|
|
//import minify from './minify';
|
2017-05-25 04:54:31 +00:00
|
|
|
import banner from './banner';
|
2017-05-16 15:00:56 +00:00
|
|
|
|
2017-05-25 07:44:44 +00:00
|
|
|
/*
|
2017-05-16 15:00:56 +00:00
|
|
|
const env = process.env.NODE_ENV;
|
|
|
|
const isProduction = env === 'production';
|
2017-05-25 07:44:44 +00:00
|
|
|
*/
|
2017-05-16 15:00:56 +00:00
|
|
|
|
2017-05-25 04:54:31 +00:00
|
|
|
export default version => {
|
2017-05-16 15:00:56 +00:00
|
|
|
const plugins = [
|
|
|
|
constant(),
|
2017-06-26 00:04:42 +00:00
|
|
|
new StringReplacePlugin(),
|
|
|
|
hoist()
|
2017-05-16 15:00:56 +00:00
|
|
|
];
|
2017-05-25 07:40:37 +00:00
|
|
|
/*
|
2017-05-16 15:00:56 +00:00
|
|
|
if (isProduction) {
|
2017-05-24 06:10:00 +00:00
|
|
|
plugins.push(minify());
|
2017-05-16 15:00:56 +00:00
|
|
|
}
|
2017-05-25 07:40:37 +00:00
|
|
|
*/
|
2017-05-25 04:54:31 +00:00
|
|
|
plugins.push(banner(version));
|
|
|
|
|
2017-05-16 15:00:56 +00:00
|
|
|
return plugins;
|
|
|
|
};
|