1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-01 23:55:58 +09:00
cherrypick/webpack/plugins/index.ts

26 lines
454 B
TypeScript
Raw Normal View History

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