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
Thanks for your work on this plugin! I think I ran into an issue with this plugin when encountering code like:
const foo = 1; const BAR = 2; export { foo as default, BAR };
I would expect there to be a default and a BAR named export. However, it seems as though there is only a default export in this case.
BAR
Here's a failing test case I wrote:
{ name: 'end of module export', code: 'const foo = 1;const BAR = 2;export { foo as default, BAR }', expected: { module: { default: 1, BAR: 2 }, exports: { default: 1, BAR: 2 } } },
The text was updated successfully, but these errors were encountered:
d368c3e
Fix #30
0303039
- add spec "export default and named declarations (#30)"
Even here confirmed, that is fixed. thanks @lencioni 👍
Sorry, something went wrong.
No branches or pull requests
Thanks for your work on this plugin! I think I ran into an issue with this plugin when encountering code like:
I would expect there to be a default and a
BAR
named export. However, it seems as though there is only a default export in this case.Here's a failing test case I wrote:
The text was updated successfully, but these errors were encountered: