mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 14:23:09 +02:00
23 lines
446 B
TypeScript
23 lines
446 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;
|
|
};
|