Rename all proposal plugins to -proposal- from -transform- (#6570)

This commit is contained in:
Henry Zhu
2017-10-27 15:26:38 -04:00
committed by GitHub
parent a94aa54230
commit c41abd79a1
599 changed files with 372 additions and 372 deletions

View File

@@ -0,0 +1,3 @@
src
test
*.log

View File

@@ -0,0 +1,45 @@
# @babel/plugin-proposal-export-default
> Compile export-default-from statements to ES2015
## Example
```js
export v from 'mod';
```
## Installation
```sh
npm install --save-dev @babel/plugin-proposal-export-default
```
## Usage
### Via `.babelrc` (Recommended)
**.babelrc**
```json
{
"plugins": ["@babel/proposal-export-default"]
}
```
### Via CLI
```sh
babel --plugins @babel/proposal-export-default script.js
```
### Via Node API
```javascript
require("@babel/core").transform("code", {
plugins: ["@babel/proposal-export-default"]
});
```
## References
* ~~[Proposal: Additional export-from statements in ES7](https://github.com/leebyron/ecmascript-more-export-from)~~ (Withdrawn)
* [ECMAScript Proposal: export default from](https://github.com/leebyron/ecmascript-export-default-from)

View File

@@ -0,0 +1,20 @@
{
"name": "@babel/plugin-proposal-export-default",
"version": "7.0.0-beta.3",
"description": "Compile export default to ES2015",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-export-default",
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"babel-plugin"
],
"dependencies": {
"@babel/plugin-syntax-export-extensions": "7.0.0-beta.3"
},
"peerDependencies": {
"@babel/core": "7.0.0-beta.3"
},
"devDependencies": {
"@babel/helper-plugin-test-runner": "7.0.0-beta.3"
}
}

View File

@@ -0,0 +1,30 @@
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;
if (!t.isExportDefaultSpecifier(specifiers[0])) return;
const specifier = specifiers.shift();
const { exported } = specifier;
const uid = scope.generateUidIdentifier(exported.name);
const nodes = [
t.importDeclaration([t.importDefaultSpecifier(uid)], node.source),
t.exportNamedDeclaration(null, [t.exportSpecifier(uid, exported)]),
];
if (specifiers.length >= 1) {
nodes.push(node);
}
path.replaceWithMultiple(nodes);
},
},
};
}

View File

@@ -0,0 +1 @@
export v, { x, y as w } from "mod";

View File

@@ -0,0 +1,3 @@
import _v from "mod";
export { _v as v };
export { x, y as w } from "mod";

View File

@@ -0,0 +1 @@
export v, * as all from "mod";

View File

@@ -0,0 +1,3 @@
import _v from "mod";
export { _v as v };
export * as all from "mod";

View File

@@ -0,0 +1 @@
export foo from "bar";

View File

@@ -0,0 +1,2 @@
import _foo from "bar";
export { _foo as foo };

View File

@@ -0,0 +1 @@
export * as foo from "bar";

View File

@@ -0,0 +1 @@
export * as foo from "bar";

View File

@@ -0,0 +1,3 @@
{
"plugins": ["external-helpers", "proposal-export-default"]
}

View File

@@ -0,0 +1,3 @@
import runner from "@babel/helper-plugin-test-runner";
runner(__dirname);