rudeshark.net/webpack/plugins/index.ts

23 lines
446 B
TypeScript
Raw Normal View History

2018-02-15 11:59:07 +01:00
const HardSourceWebpackPlugin = require('hard-source-webpack-plugin');
2017-05-16 17:00:56 +02:00
2017-11-22 22:51:32 +01:00
import consts from './consts';
2017-06-26 02:04:42 +02:00
import hoist from './hoist';
2017-11-28 10:14:24 +01:00
import minify from './minify';
2017-05-16 17:00:56 +02:00
const env = process.env.NODE_ENV;
const isProduction = env === 'production';
2017-11-03 09:46:42 +01:00
export default (version, lang) => {
2017-05-16 17:00:56 +02:00
const plugins = [
2018-02-15 11:59:07 +01:00
new HardSourceWebpackPlugin(),
consts(lang)
2017-05-16 17:00:56 +02:00
];
2017-05-16 17:00:56 +02:00
if (isProduction) {
2018-02-15 04:36:42 +01:00
plugins.push(hoist());
2017-11-28 10:14:24 +01:00
plugins.push(minify());
2017-05-16 17:00:56 +02:00
}
2017-05-16 17:00:56 +02:00
return plugins;
};