2018-02-23 04:53:33 +09:00
|
|
|
import * as webpack from 'webpack';
|
2018-02-25 14:32:37 +09:00
|
|
|
const ProgressBarPlugin = require('progress-bar-webpack-plugin');
|
2018-02-23 04:53:33 +09:00
|
|
|
|
2017-11-23 06:51:32 +09:00
|
|
|
import consts from './consts';
|
2017-06-26 09:04:42 +09:00
|
|
|
import hoist from './hoist';
|
2017-11-28 18:14:24 +09:00
|
|
|
import minify from './minify';
|
2017-05-17 00:00:56 +09:00
|
|
|
|
|
|
|
const env = process.env.NODE_ENV;
|
|
|
|
const isProduction = env === 'production';
|
|
|
|
|
2017-11-03 17:46:42 +09:00
|
|
|
export default (version, lang) => {
|
2017-05-17 00:00:56 +09:00
|
|
|
const plugins = [
|
2018-02-25 14:32:37 +09:00
|
|
|
new ProgressBarPlugin(),
|
2018-02-23 04:53:33 +09:00
|
|
|
consts(lang),
|
|
|
|
new webpack.DefinePlugin({
|
|
|
|
'process.env': {
|
|
|
|
NODE_ENV: JSON.stringify(process.env.NODE_ENV)
|
|
|
|
}
|
|
|
|
})
|
2017-05-17 00:00:56 +09:00
|
|
|
];
|
2017-10-22 15:01:02 +09:00
|
|
|
|
2017-05-17 00:00:56 +09:00
|
|
|
if (isProduction) {
|
2018-02-15 12:36:42 +09:00
|
|
|
plugins.push(hoist());
|
2017-11-28 18:14:24 +09:00
|
|
|
plugins.push(minify());
|
2017-05-17 00:00:56 +09:00
|
|
|
}
|
2017-10-22 15:01:02 +09:00
|
|
|
|
2017-05-17 00:00:56 +09:00
|
|
|
return plugins;
|
|
|
|
};
|