misskey/webpack/plugins/index.ts

26 lines
498 B
TypeScript
Raw Normal View History

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