mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
/*
 | 
						|
	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
						|
	Author Tobias Koppers @sokra
 | 
						|
*/
 | 
						|
var path = require("path");
 | 
						|
var ConstDependency = require("./dependencies/ConstDependency");
 | 
						|
 | 
						|
var NullFactory = require("./NullFactory");
 | 
						|
 | 
						|
function CompatibilityPlugin() {}
 | 
						|
module.exports = CompatibilityPlugin;
 | 
						|
 | 
						|
CompatibilityPlugin.prototype.apply = function(compiler) {
 | 
						|
	compiler.plugin("compilation", function(compilation) {
 | 
						|
		compilation.dependencyFactories.set(ConstDependency, new NullFactory());
 | 
						|
		compilation.dependencyTemplates.set(ConstDependency, new ConstDependency.Template());
 | 
						|
	});
 | 
						|
	compiler.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;
 | 
						|
	});
 | 
						|
};
 |