-
-
Save ELLIOTTCABLE/b8817d28ce134a12fc41 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// index.js | |
module.exports = require('./Library/app'); | |
// Source/app.js.es6 | |
import from 'foo'; | |
import from 'bar'; | |
// Source/foo.js.es6 | |
console.log('simple'); | |
// Source/bar.coffee | |
more = require 'more' | |
// Source/more.coffee | |
console.log 'not so simple' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
babel --out-dir 'Library' 'Source/*.es6' | |
coffee --compile --output 'Library' 'Source/*.coffee' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment