mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
	
	
		
			18 lines
		
	
	
		
			384 B
		
	
	
	
		
			JavaScript
		
	
	
	
		
		
			
		
	
	
			18 lines
		
	
	
		
			384 B
		
	
	
	
		
			JavaScript
		
	
	
	
|  | "use strict"; | ||
|  | 
 | ||
|  | class ContextExclusionPlugin { | ||
|  | 	constructor(negativeMatcher) { | ||
|  | 		this.negativeMatcher = negativeMatcher; | ||
|  | 	} | ||
|  | 
 | ||
|  | 	apply(compiler) { | ||
|  | 		compiler.plugin("context-module-factory", (cmf) => { | ||
|  | 			cmf.plugin("context-module-files", (files) => { | ||
|  | 				return files.filter(filePath => !this.negativeMatcher.test(filePath)); | ||
|  | 			}); | ||
|  | 		}); | ||
|  | 	} | ||
|  | } | ||
|  | 
 | ||
|  | module.exports = ContextExclusionPlugin; |