Last active
December 29, 2015 12:09
-
-
Save vojtajina/7668603 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
export class Greeter { | |
} |
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
import {Greeter} from './code.js'; | |
var g = new Greeter(); |
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
./traceur --out transpiled.js code.js | |
# This fails: | |
# code.js:1:1: unexpected token export | |
# code.js:1:8: Semi-colon expected | |
# undefined | |
./traceur --out transpiled.js main.js | |
# This works fine, but transpiles everything into a single file. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment