Skip to content

Instantly share code, notes, and snippets.

@ELLIOTTCABLE
Forked from thomasdavis/mmmm.js
Last active March 8, 2016 08:14
Show Gist options
  • Save ELLIOTTCABLE/b8817d28ce134a12fc41 to your computer and use it in GitHub Desktop.
Save ELLIOTTCABLE/b8817d28ce134a12fc41 to your computer and use it in GitHub Desktop.
// 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'
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