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 foo from "bar";

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,2 @@
import * as _default from "foo";
export { _default as default };

View File

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

View File

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

View File

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

View File

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