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 @@
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);