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;
 | |
| };
 | 
