mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
23 lines
448 B
TypeScript
23 lines
448 B
TypeScript
const HardSourceWebpackPlugin = require('hard-source-webpack-plugin');
|
|
|
|
import consts from './consts';
|
|
import hoist from './hoist';
|
|
import minify from './minify';
|
|
|
|
const env = process.env.NODE_ENV;
|
|
const isProduction = env === 'production';
|
|
|
|
export default (version, lang) => {
|
|
const plugins = [
|
|
//new HardSourceWebpackPlugin(),
|
|
consts(lang)
|
|
];
|
|
|
|
if (isProduction) {
|
|
plugins.push(hoist());
|
|
plugins.push(minify());
|
|
}
|
|
|
|
return plugins;
|
|
};
|