Rename test fixtures using module syntax to .mjs files.
This commit is contained in:
12
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/overview/input.mjs
vendored
Normal file
12
packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/overview/input.mjs
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
import "foo";
|
||||
import "foo-bar";
|
||||
import "./directory/foo-bar";
|
||||
import foo from "foo";
|
||||
import * as foo2 from "foo";
|
||||
import {bar} from "foo";
|
||||
import {foo as bar2} from "foo";
|
||||
|
||||
export {test};
|
||||
export var test2 = 5;
|
||||
|
||||
export default test;
|
||||
Reference in New Issue
Block a user