rudeshark.net/webpack/plugins/index.ts

24 lines
479 B
TypeScript
Raw Normal View History

2017-05-16 17:28:45 +02:00
import * as webpack from 'webpack';
2017-05-16 17:00:56 +02:00
const StringReplacePlugin = require('string-replace-webpack-plugin');
import constant from './const';
2017-05-16 17:28:45 +02:00
import compression from './compression';
2017-05-16 17:00:56 +02:00
const env = process.env.NODE_ENV;
const isProduction = env === 'production';
export default () => {
const plugins = [
constant(),
new StringReplacePlugin()
];
if (isProduction) {
2017-05-16 17:28:45 +02:00
plugins.push(new webpack.optimize.UglifyJsPlugin());
2017-05-16 17:00:56 +02:00
}
2017-05-16 17:28:45 +02:00
plugins.push(compression());
2017-05-16 17:00:56 +02:00
return plugins;
};