Require output fixture extension to match sourceType output.

This commit is contained in:
Logan Smyth
2018-03-03 18:22:15 -08:00
parent beb99dfda1
commit 7cc00cce0d
131 changed files with 20 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
var _foo = "yes",
foob = "no";
export { _foo as foo, foob };
function _whatever() {}
export { _whatever as whatever };
function _wowzers() {}
export { _wowzers as default };
var bar = {
foo: function foo() {
_foo;
},
whatever: function whatever() {
_whatever;
},
wowzers: function wowzers() {
_wowzers;
}
};