forked from webpack/webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProvidePlugin.js
More file actions
48 lines (46 loc) · 1.63 KB
/
ProvidePlugin.js
File metadata and controls
48 lines (46 loc) · 1.63 KB
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
47
48
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
var ModuleParserHelpers = require("./ModuleParserHelpers");
var ConstDependency = require("./dependencies/ConstDependency");
var NullFactory = require("./NullFactory");
function ProvidePlugin(definitions) {
this.definitions = definitions;
}
module.exports = ProvidePlugin;
ProvidePlugin.prototype.apply = function(compiler) {
compiler.plugin("compilation", function(compilation) {
compilation.dependencyFactories.set(ConstDependency, new NullFactory());
compilation.dependencyTemplates.set(ConstDependency, new ConstDependency.Template());
});
Object.keys(this.definitions).forEach(function(name) {
var request = this.definitions[name];
var splittedName = name.split(".");
if(splittedName.length > 0) {
splittedName.slice(1).forEach(function(_, i) {
var name = splittedName.slice(0, i + 1).join(".");
compiler.parser.plugin("can-rename " + name, function() {
return true;
});
});
}
compiler.parser.plugin("expression " + name, function(expr) {
var nameIdentifier = name;
var scopedName = name.indexOf(".") >= 0;
if(scopedName) {
nameIdentifier = "__webpack_provided_" + name.replace(/\./g, "_dot_");
}
if(!ModuleParserHelpers.addParsedVariable(this, nameIdentifier, "require(" + JSON.stringify(request) + ")")) {
return false;
}
if(scopedName) {
nameIdentifier = "__webpack_provided_" + name.replace(/\./g, "_dot_");
var dep = new ConstDependency(nameIdentifier, expr.range);
dep.loc = expr.loc;
this.state.current.addDependency(dep);
}
return true;
});
}, this);
};