Rename all proposal plugins to -proposal- from -transform- (#6570)
This commit is contained in:
@@ -0,0 +1 @@
|
||||
export v, { x, y as w } from "mod";
|
||||
@@ -0,0 +1,3 @@
|
||||
import _v from "mod";
|
||||
export { _v as v };
|
||||
export { x, y as w } from "mod";
|
||||
@@ -0,0 +1 @@
|
||||
export v, * as all from "mod";
|
||||
@@ -0,0 +1,3 @@
|
||||
import _v from "mod";
|
||||
export { _v as v };
|
||||
export * as all from "mod";
|
||||
@@ -0,0 +1 @@
|
||||
export foo from "bar";
|
||||
@@ -0,0 +1,2 @@
|
||||
import _foo from "bar";
|
||||
export { _foo as foo };
|
||||
@@ -0,0 +1 @@
|
||||
export * as foo from "bar";
|
||||
@@ -0,0 +1 @@
|
||||
export * as foo from "bar";
|
||||
3
packages/babel-plugin-proposal-export-default/test/fixtures/export-default/options.json
vendored
Normal file
3
packages/babel-plugin-proposal-export-default/test/fixtures/export-default/options.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"plugins": ["external-helpers", "proposal-export-default"]
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
import runner from "@babel/helper-plugin-test-runner";
|
||||
|
||||
runner(__dirname);
|
||||
Reference in New Issue
Block a user