rudeshark.net/webpack/plugins/index.ts

24 lines
442 B
TypeScript
Raw Normal View History

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