| 
									
										
										
										
											2013-07-11 05:20:07 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Tobias Koppers @sokra | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											2017-01-06 01:34:34 +08:00
										 |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class WebEnvironmentPlugin { | 
					
						
							|  |  |  | 	constructor(inputFileSystem, outputFileSystem) { | 
					
						
							|  |  |  | 		this.inputFileSystem = inputFileSystem; | 
					
						
							|  |  |  | 		this.outputFileSystem = outputFileSystem; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	apply(compiler) { | 
					
						
							|  |  |  | 		compiler.outputFileSystem = this.outputFileSystem; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-07-11 05:20:07 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-01-06 01:34:34 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-11 05:20:07 +08:00
										 |  |  | module.exports = WebEnvironmentPlugin; |