dvlsg / async-csp

CSP style channels using ES7 async/await
MIT License
317 stars 18 forks source link

No babel-runtime. #6

Closed trusktr closed 8 years ago

trusktr commented 8 years ago

This is just for reference, but for some reason Meteor's new ES2015 modules package (in Meteor 1.3 Beta) won't import babel-runtime, so as a temporary workaround I disabled the runtime so that the symbols are defined inline.

dvlsg commented 8 years ago

Interesting. I'll keep an eye out -- switching to babel 6 is on my todo list. If the runtime transform is an issue with some systems (like meteor), I can leave it out. Thanks for the heads up.

trusktr commented 8 years ago

I think using the runtime is the proper thing to do (in case the code gets bigger we avoid duplicate code), so I opened an issue on meteor/meteor about the import "not found" error that I'm getting.