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