| 
									
										
										
										
											2013-01-31 01:49:25 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Tobias Koppers @sokra | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											2014-06-06 01:52:45 +08:00
										 |  |  | var ConstDependency = require("./dependencies/ConstDependency"); | 
					
						
							| 
									
										
										
										
											2013-01-31 01:49:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-16 21:18:49 +08:00
										 |  |  | var NullFactory = require("./NullFactory"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-07 18:43:47 +08:00
										 |  |  | var jsonLoaderPath = require.resolve("json-loader"); | 
					
						
							|  |  |  | var matchJson = /\.json$/i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 06:20:09 +08:00
										 |  |  | function CompatibilityPlugin() {} | 
					
						
							| 
									
										
										
										
											2013-01-31 01:49:25 +08:00
										 |  |  | module.exports = CompatibilityPlugin; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | CompatibilityPlugin.prototype.apply = function(compiler) { | 
					
						
							| 
									
										
										
										
											2016-09-14 18:04:42 +08:00
										 |  |  | 	compiler.plugin("compilation", function(compilation, params) { | 
					
						
							| 
									
										
										
										
											2014-06-16 21:18:49 +08:00
										 |  |  | 		compilation.dependencyFactories.set(ConstDependency, new NullFactory()); | 
					
						
							|  |  |  | 		compilation.dependencyTemplates.set(ConstDependency, new ConstDependency.Template()); | 
					
						
							| 
									
										
										
										
											2016-09-14 18:04:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		params.normalModuleFactory.plugin("parser", function(parser, parserOptions) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if(typeof parserOptions.browserify !== "undefined" && !parserOptions.browserify) | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			parser.plugin("call require", function(expr) { | 
					
						
							|  |  |  | 				// support for browserify style require delegator: "require(o, !0)"
 | 
					
						
							|  |  |  | 				if(expr.arguments.length !== 2) return; | 
					
						
							|  |  |  | 				var second = this.evaluateExpression(expr.arguments[1]); | 
					
						
							|  |  |  | 				if(!second.isBoolean()) return; | 
					
						
							|  |  |  | 				if(second.asBool() !== true) return; | 
					
						
							|  |  |  | 				var dep = new ConstDependency("require", expr.callee.range); | 
					
						
							|  |  |  | 				dep.loc = expr.loc; | 
					
						
							|  |  |  | 				if(this.state.current.dependencies.length > 1) { | 
					
						
							|  |  |  | 					var last = this.state.current.dependencies[this.state.current.dependencies.length - 1]; | 
					
						
							|  |  |  | 					if(last.critical && last.request === "." && last.userRequest === "." && last.recursive) | 
					
						
							|  |  |  | 						this.state.current.dependencies.pop(); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				this.state.current.addDependency(dep); | 
					
						
							|  |  |  | 				return true; | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2016-12-07 18:43:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		params.normalModuleFactory.plugin("after-resolve", function(data, done) { | 
					
						
							|  |  |  | 			// if this is a json file and there are no loaders active, we use the json-loader in order to avoid parse errors
 | 
					
						
							|  |  |  | 			// @see https://github.com/webpack/webpack/issues/3363
 | 
					
						
							|  |  |  | 			if(matchJson.test(data.request) && data.loaders.length === 0) { | 
					
						
							|  |  |  | 				data.loaders.push({ | 
					
						
							|  |  |  | 					loader: jsonLoaderPath | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			done(null, data); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2014-06-06 01:52:45 +08:00
										 |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2015-03-06 21:59:11 +08:00
										 |  |  | }; |