jormungandr-bite/webpack/plugins/index.ts

27 lines
489 B
TypeScript
Raw Normal View History

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