egirlskey/webpack/plugins/index.ts

21 lines
373 B
TypeScript
Raw Normal View History

2017-05-16 15:00:56 +00:00
const StringReplacePlugin = require('string-replace-webpack-plugin');
import constant from './const';
2017-05-24 06:10:00 +00:00
import minify from './minify';
2017-05-16 15:00:56 +00:00
const env = process.env.NODE_ENV;
const isProduction = env === 'production';
export default () => {
const plugins = [
constant(),
new StringReplacePlugin()
];
if (isProduction) {
2017-05-24 06:10:00 +00:00
plugins.push(minify());
2017-05-16 15:00:56 +00:00
}
return plugins;
};