-
Notifications
You must be signed in to change notification settings - Fork 6
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
Remove the of statements #15
Comments
In 2018 I'd like to write ES6 :) https://github.com/webpack-contrib/uglifyjs-webpack-plugin says:
It looks like you can work around it in |
Sadly with the current |
I think maybe the But I can't see where it depends on |
which is version 1.1.6 so should be fine |
Looks like the fix came in here 15 days ago: facebook/create-react-app@ff54494 |
@roccomuso did the latest |
@davedoesdev yes, thanks :) |
We might consider the idea to switch from a
for (w of st.keys())
statement to a more common oneObject.keys(st.keys())
... right now webpack's uglify doesn't support theof
keyword.If we change this loop syntax with an older one, anyone can build and use the module also on the browser.
The text was updated successfully, but these errors were encountered: