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