Rename all proposal plugins to -proposal- from -transform- (#6570)
This commit is contained in:
40
packages/babel-plugin-proposal-export-namespace/src/index.js
Normal file
40
packages/babel-plugin-proposal-export-namespace/src/index.js
Normal file
@@ -0,0 +1,40 @@
|
||||
import syntaxExportExtensions from "@babel/plugin-syntax-export-extensions";
|
||||
|
||||
export default function({ types: t }) {
|
||||
return {
|
||||
inherits: syntaxExportExtensions,
|
||||
|
||||
visitor: {
|
||||
ExportNamedDeclaration(path) {
|
||||
const { node, scope } = path;
|
||||
const { specifiers } = node;
|
||||
|
||||
const index = t.isExportDefaultSpecifier(specifiers[0]) ? 1 : 0;
|
||||
if (!t.isExportNamespaceSpecifier(specifiers[index])) return;
|
||||
|
||||
const nodes = [];
|
||||
|
||||
if (index === 1) {
|
||||
nodes.push(
|
||||
t.exportNamedDeclaration(null, [specifiers.shift()], node.source),
|
||||
);
|
||||
}
|
||||
|
||||
const specifier = specifiers.shift();
|
||||
const { exported } = specifier;
|
||||
const uid = scope.generateUidIdentifier(exported.name);
|
||||
|
||||
nodes.push(
|
||||
t.importDeclaration([t.importNamespaceSpecifier(uid)], node.source),
|
||||
t.exportNamedDeclaration(null, [t.exportSpecifier(uid, exported)]),
|
||||
);
|
||||
|
||||
if (node.specifiers.length >= 1) {
|
||||
nodes.push(node);
|
||||
}
|
||||
|
||||
path.replaceWithMultiple(nodes);
|
||||
},
|
||||
},
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user