mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-30 21:14:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			407 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			407 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import * as webpack from 'webpack';
 | |
| const StringReplacePlugin = require('string-replace-webpack-plugin');
 | |
| 
 | |
| import constant from './const';
 | |
| 
 | |
| const env = process.env.NODE_ENV;
 | |
| const isProduction = env === 'production';
 | |
| 
 | |
| export default () => {
 | |
| 	const plugins = [
 | |
| 		constant(),
 | |
| 		new StringReplacePlugin()
 | |
| 	];
 | |
| 
 | |
| 	if (isProduction) {
 | |
| 		plugins.push(new webpack.optimize.UglifyJsPlugin());
 | |
| 	}
 | |
| 
 | |
| 	return plugins;
 | |
| };
 |