Adding browserify and es6ify support

This commit is contained in:
Jeff Avallone
2014-11-23 17:00:01 -05:00
parent 9151a47a8e
commit cc16603f6f
5 changed files with 38 additions and 5 deletions
+5
View File
@@ -0,0 +1,5 @@
import test from './test';
test('foo');
console.log('testing');
+3
View File
@@ -0,0 +1,3 @@
export default m => {
console.log(m);
};