yumechi-no-kuni/webpack/plugins/index.ts

28 lines
494 B
TypeScript
Raw Normal View History

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