-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbabel-plugin-replace-global-env.js
66 lines (52 loc) · 1.69 KB
/
babel-plugin-replace-global-env.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
const path = require('path');
function plugin(babel) {
let t = babel.types;
function buildIdentifier(value, name) {
let replacement = typeof value === 'boolean'
? t.booleanLiteral(value)
: t.stringLiteral(value);
return t.addComment(replacement, 'trailing', ` ${name} `);
}
return {
name: 'babel-plugin-replace-global-env',
visitor: {
ImportSpecifier(path, state) {
let importPath = path.parent.source.value;
let flagsForImport = state.opts.env[importPath];
if (flagsForImport) {
let flagName = path.node.imported.name;
let localBindingName = path.node.local.name;
if (!(flagName in flagsForImport)) {
throw new Error(
`Imported ${flagName} from ${importPath} which is not a supported flag.`
);
}
let flagValue = flagsForImport[flagName];
if (flagValue === null) {
return;
}
let binding = path.scope.getBinding(localBindingName);
binding.referencePaths.forEach(p => {
p.replaceWith(buildIdentifier(flagValue, flagName));
});
path.remove();
path.scope.removeOwnBinding(localBindingName);
}
},
ImportDeclaration: {
exit(path, state) {
let importPath = path.node.source.value;
let flagsForImport = state.opts.env[importPath];
// remove flag source imports when no specifiers are left
if (flagsForImport && path.get('specifiers').length === 0) {
path.remove();
}
},
},
},
};
}
plugin.baseDir = function() {
return path.dirname(__dirname);
};
module.exports = plugin;