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
export default
Something like
export default[42]
is getting transformed in https://shimport-demos.surge.sh/transform/ to
__shimport__.define('demo.js', [], function(__import, __exports){ default[42] }); //# sourceURL=demo.js
This is a contrived example, but export default( will appear in minified code that is exporting the result of an IIFE.
export default(
The text was updated successfully, but these errors were encountered:
I'm guessing this needs adjusting but I have not tried anything yet.
Sorry, something went wrong.
Merge pull request #23 from Conduitry/gh-22
26bc438
correctly transform `export default` followed by non-whitespace
Successfully merging a pull request may close this issue.
Something like
is getting transformed in https://shimport-demos.surge.sh/transform/ to
This is a contrived example, but
export default(
will appear in minified code that is exporting the result of an IIFE.The text was updated successfully, but these errors were encountered: