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