mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-03 23:14:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			494 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			494 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
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 => {
 | 
						|
	const plugins = [
 | 
						|
		constant(),
 | 
						|
		new StringReplacePlugin(),
 | 
						|
		hoist()
 | 
						|
	];
 | 
						|
/*
 | 
						|
	if (isProduction) {
 | 
						|
		plugins.push(minify());
 | 
						|
	}
 | 
						|
*/
 | 
						|
	plugins.push(banner(version));
 | 
						|
 | 
						|
	return plugins;
 | 
						|
};
 |