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
If I try to use fetch like so:
fetch
let response = await fetch('https://domain.tld');
Uglify throws this error:
Unexpected token: name «fetch», expected: punc «;».
This old issue (#499) appears to be similar, but the solution is to use a grunt package that is currently marked as depreciated so ¯\_(ツ)_/¯
¯\_(ツ)_/¯
I'm using grunt-contrib-uglify version 5.2.1
grunt-contrib-uglify
The text was updated successfully, but these errors were encountered:
sounds like you are using top-level await, which is now supported in version 5.2.2 when module: true is specified.
await
module: true
Sorry, something went wrong.
I think that's the problem
No branches or pull requests
If I try to use
fetch
like so:let response = await fetch('https://domain.tld');
Uglify throws this error:
This old issue (#499) appears to be similar, but the solution is to use a grunt package that is currently marked as depreciated so
¯\_(ツ)_/¯
I'm using
grunt-contrib-uglify
version 5.2.1The text was updated successfully, but these errors were encountered: