summaryrefslogtreecommitdiff
path: root/webpack/plugins/index.ts
blob: d37047b6720c97b9afd67c0af022b652fc31751c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
const StringReplacePlugin = require('string-replace-webpack-plugin');

import constant from './const';
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 = [
		constant(lang),
		new StringReplacePlugin(),
		hoist()
	];

	if (isProduction) {
		//plugins.push(minify());
	}

	plugins.push(banner(version));

	return plugins;
};