mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
	
	
		
			21 lines
		
	
	
		
			690 B
		
	
	
	
		
			JavaScript
		
	
	
	
		
		
			
		
	
	
			21 lines
		
	
	
		
			690 B
		
	
	
	
		
			JavaScript
		
	
	
	
|  | /* | ||
|  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | ||
|  | 	Author Tobias Koppers @sokra | ||
|  | */ | ||
|  | function NormalModuleReplacementPlugin(resourceRegExp, newResource) { | ||
|  | 	this.resourceRegExp = resourceRegExp; | ||
|  | 	this.newResource = newResource | ||
|  | } | ||
|  | module.exports = NormalModuleReplacementPlugin; | ||
|  | NormalModuleReplacementPlugin.prototype.apply = function(compiler) { | ||
|  | 	var resourceRegExp = this.resourceRegExp; | ||
|  | 	var newResource = this.newResource; | ||
|  | 	compiler.plugin("normal-module-factory", function(nmf) { | ||
|  | 		nmf.plugin("after-resolve", function(result, callback) { | ||
|  | 			if(resourceRegExp.test(result.resource)) { | ||
|  | 				result.resource = newResource; | ||
|  | 			} | ||
|  | 			return callback(null, result); | ||
|  | 		}); | ||
|  | 	}); | ||
|  | }; |