mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			58 lines
		
	
	
		
			926 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			926 B
		
	
	
	
		
			JavaScript
		
	
	
	
| var webpack = require("../../../");
 | |
| var fs = require("fs");
 | |
| var join = require("path").join;
 | |
| 
 | |
| function read(path) {
 | |
| 	return JSON.stringify(
 | |
| 		fs.readFileSync(join(__dirname, path), "utf8").replace(/\r\n?/g, "\n")
 | |
| 	);
 | |
| }
 | |
| 
 | |
| module.exports = [
 | |
| 	{
 | |
| 		mode: "production",
 | |
| 		entry: "./index",
 | |
| 		output: {
 | |
| 			filename: "123.js"
 | |
| 		},
 | |
| 		plugins: [
 | |
| 			new webpack.DefinePlugin({
 | |
| 				VALUE: "123"
 | |
| 			})
 | |
| 		]
 | |
| 	},
 | |
| 
 | |
| 	{
 | |
| 		mode: "production",
 | |
| 		entry: "./index",
 | |
| 		output: {
 | |
| 			filename: "321.js"
 | |
| 		},
 | |
| 		plugins: [
 | |
| 			new webpack.DefinePlugin({
 | |
| 				VALUE: "321"
 | |
| 			})
 | |
| 		]
 | |
| 	},
 | |
| 
 | |
| 	{
 | |
| 		mode: "production",
 | |
| 		entry: "./index",
 | |
| 		output: {
 | |
| 			filename: "both.js"
 | |
| 		},
 | |
| 		plugins: [
 | |
| 			new webpack.DefinePlugin({
 | |
| 				VALUE: webpack.DefinePlugin.runtimeValue(() => read("123.txt"), [
 | |
| 					"./123.txt"
 | |
| 				])
 | |
| 			}),
 | |
| 			new webpack.DefinePlugin({
 | |
| 				VALUE: webpack.DefinePlugin.runtimeValue(() => read("321.txt"), [
 | |
| 					"./321.txt"
 | |
| 				])
 | |
| 			})
 | |
| 		]
 | |
| 	}
 | |
| ];
 |