futz the bundler idea

This commit is contained in:
Sebastian McKenzie
2015-05-01 03:26:12 +01:00
parent aaf4cbf06f
commit e9bcccffbd
6 changed files with 13 additions and 45 deletions

View File

@@ -0,0 +1,3 @@
import foo from "./fixtures/foo";
foo();

View File

@@ -0,0 +1,7 @@
"use strict";
function fixtures$foo() {
return "foobar";
}
fixtures$foo();

View File

@@ -0,0 +1,3 @@
export default function () {
return "foobar";
}