2014-08-25 15:50:26 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Tobias Koppers @sokra
|
|
|
|
*/
|
|
|
|
var ConstDependency = require("./dependencies/ConstDependency");
|
|
|
|
var BasicEvaluatedExpression = require("./BasicEvaluatedExpression");
|
|
|
|
|
|
|
|
var NullFactory = require("./NullFactory");
|
|
|
|
|
2015-07-13 06:20:09 +08:00
|
|
|
function ExtendedAPIPlugin() {}
|
2014-08-25 15:50:26 +08:00
|
|
|
module.exports = ExtendedAPIPlugin;
|
|
|
|
|
|
|
|
var REPLACEMENTS = {
|
2015-04-24 05:55:50 +08:00
|
|
|
__webpack_hash__: "__webpack_require__.h" // eslint-disable-line camelcase
|
2014-08-25 15:50:26 +08:00
|
|
|
};
|
|
|
|
var REPLACEMENT_TYPES = {
|
2015-04-24 05:55:50 +08:00
|
|
|
__webpack_hash__: "string" // eslint-disable-line camelcase
|
2014-08-25 15:50:26 +08:00
|
|
|
};
|
|
|
|
ExtendedAPIPlugin.prototype.apply = function(compiler) {
|
2015-04-24 05:55:50 +08:00
|
|
|
compiler.plugin("compilation", function(compilation) {
|
2014-08-25 15:50:26 +08:00
|
|
|
compilation.dependencyFactories.set(ConstDependency, new NullFactory());
|
|
|
|
compilation.dependencyTemplates.set(ConstDependency, new ConstDependency.Template());
|
|
|
|
compilation.mainTemplate.plugin("require-extensions", function(source, chunk, hash) {
|
|
|
|
var buf = [source];
|
|
|
|
buf.push("");
|
|
|
|
buf.push("// __webpack_hash__");
|
|
|
|
buf.push(this.requireFn + ".h = " + JSON.stringify(hash) + ";");
|
|
|
|
return this.asString(buf);
|
|
|
|
});
|
|
|
|
compilation.mainTemplate.plugin("global-hash", function() {
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
Object.keys(REPLACEMENTS).forEach(function(key) {
|
2015-04-24 05:55:50 +08:00
|
|
|
compiler.parser.plugin("expression " + key, function(expr) {
|
2014-08-25 15:50:26 +08:00
|
|
|
var dep = new ConstDependency(REPLACEMENTS[key], expr.range);
|
|
|
|
dep.loc = expr.loc;
|
|
|
|
this.state.current.addDependency(dep);
|
|
|
|
return true;
|
|
|
|
});
|
2015-04-24 05:55:50 +08:00
|
|
|
compiler.parser.plugin("evaluate typeof " + key, function(expr) {
|
2014-08-25 15:50:26 +08:00
|
|
|
return new BasicEvaluatedExpression().setString(REPLACEMENT_TYPES[key]).setRange(expr.range);
|
|
|
|
});
|
|
|
|
});
|
2015-07-08 20:39:02 +08:00
|
|
|
};
|