mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-30 21:14:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			454 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			25 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;
 | |
| };
 |