-
-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Imports conflict with local variables #14
Comments
Interesting edge case, I believe this should be solved (hopefully) by Babel itself, as a plugin, broccoli-babel-tanspiler doesn't handle name mapping, it just follow the way Babel does. @sebmck what's your opinion on this one? |
ember-cli doesn't use Babel for modules. Babel modules are blacklisted and On Wednesday, 4 March 2015, Albert Yu notifications@github.com wrote:
Sebastian McKenzie |
@sebmck that makes sense, I was wondering why the output was different to what I saw on the babel repl. Probably worth closing this and I'll re-open on ember-cli. |
For anyone following, I think this is due to esperantojs/esperanto#116 |
I'm using Ember CLI, with ember-cli-babel which in turn uses this addon. This may want to be opened as an issue in babel itself?
I have the following in my app:
Which appears to be being transpiled to:
Notice that there's an imported
meeting
and a localmeeting
which tramples on it someeting.updateMeeting
isundefined
.The text was updated successfully, but these errors were encountered: