We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Input:
import { stuff } from 'foo'; import { stuff } from 'bar'; stuff();
Output:
define(['foo', 'bar'], function (foo, bar) { 'use strict'; bar.stuff(); });
import stuff from 'foo'; import stuff from 'bar'; stuff();
define(['foo', 'bar'], function (stuff, stuff) { 'use strict'; stuff['default'](); });
I think we should throw an error at transpile time for both scenarios above.
The text was updated successfully, but these errors were encountered:
This was discovered after updating Ember, and realizing I accidentally had imported with the same name twice (fixed in emberjs/ember.js#10338).
Sorry, something went wrong.
718a95e
Agree. Thanks - fixed
Released in 0.6.16
No branches or pull requests
Example 1:
Input:
Output:
Example 2
Input:
Output:
I think we should throw an error at transpile time for both scenarios above.
The text was updated successfully, but these errors were encountered: