forked from webpack/webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ExtendedAPIPlugin.js
46 lines (43 loc) · 1.52 KB
/
ExtendedAPIPlugin.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
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");
function ExtendedAPIPlugin() {
}
module.exports = ExtendedAPIPlugin;
var REPLACEMENTS = {
__webpack_hash__: "__webpack_require__.h"
};
var REPLACEMENT_TYPES = {
__webpack_hash__: "string"
};
ExtendedAPIPlugin.prototype.apply = function(compiler) {
compiler.plugin("compilation", function(compilation, params) {
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) {
compiler.parser.plugin("expression "+key, function(expr) {
var dep = new ConstDependency(REPLACEMENTS[key], expr.range);
dep.loc = expr.loc;
this.state.current.addDependency(dep);
return true;
});
compiler.parser.plugin("evaluate typeof "+key, function(expr) {
return new BasicEvaluatedExpression().setString(REPLACEMENT_TYPES[key]).setRange(expr.range);
});
});
};