I'm recieving:
SyntaxError: Unexpected token: punc ()) from UglifyJS
and it points to the first letter of global variable API_URL
.
I have it implemented in this way:
export default reduxApi({
campaigns: {
url: `${API_URL}/api/v1/whatever`,
transformer (response) {
if (!response) return {}
return response.data
}
}
}).use('fetch', adapterFetch(fetch)).use('options', {
headers: getRequestHeaders()
})
If I remove global variable under key url
:
export default reduxApi({
campaigns: {
url: `/api/v1/whatever`,
transformer (response) {
if (!response) return {}
return response.data
}
}
}).use('fetch', adapterFetch(fetch)).use('options', {
headers: getRequestHeaders()
})
then everything works fine. Any ideas? Why uglify throws that kind of error?
Uglify doesn't fully support ES6, template literals included. You can track the conversation on Github. There's a harmony
branch for ES6 support. You can use the branch by replacing your package.json
entry for uglify to:
"uglify-js": "git+https://github.com/mishoo/UglifyJS2.git#harmony"
Alternatively, you might want to pass the code through a transpiler first before minification. That way, all the syntax will be ES5 which Uglify understands very well. You might want to tweak your transpiler config if you want some of the ES6 syntax to remain intact.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With