mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			21 lines
		
	
	
		
			438 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			438 B
		
	
	
	
		
			JavaScript
		
	
	
	
| /*
 | |
| 	MIT License http://www.opensource.org/licenses/mit-license.php
 | |
| 	Author Tobias Koppers @sokra
 | |
| */
 | |
| "use strict";
 | |
| 
 | |
| class LoaderTargetPlugin {
 | |
| 	constructor(target) {
 | |
| 		this.target = target;
 | |
| 	}
 | |
| 
 | |
| 	apply(compiler) {
 | |
| 		let target = this.target;
 | |
| 		compiler.plugin("compilation", (compilation) => {
 | |
| 			compilation.plugin("normal-module-loader", (loaderContext) => loaderContext.target = target);
 | |
| 		});
 | |
| 	}
 | |
| }
 | |
| 
 | |
| module.exports = LoaderTargetPlugin;
 |