webpack/lib/CompatibilityPlugin.js

35 lines
1.3 KiB
JavaScript
Raw Normal View History

2013-01-31 01:49:25 +08:00
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
var path = require("path");
var ConstDependency = require("./dependencies/ConstDependency");
2013-01-31 01:49:25 +08:00
var NullFactory = require("./NullFactory");
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) {
2015-04-24 05:55:50 +08:00
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;
});
};