-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Syntax error with ES6 shorthand properties #16
Comments
As i understand, i should convert shortland object expression to full object expression. |
I pushed fix to the master branch. Please, temporary add this branch to you package.json, update version and say - problem was fixed or not? If yes - i will publish |
With |
Nice, i should fix strange decreasing of tests code coverage and then i will release it on npm |
0.7.2 is out. Now - its time to fix and update plugin for webpack. |
The following input file (
test.js
) contains shorthand properties:Node.js can handle them:
However, loading the obfuscated file raises a syntax error:
After replacing the shorthand properties in
test.js
with{a: a, b: b}
, things work fine.The text was updated successfully, but these errors were encountered: