You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 26, 2018. It is now read-only.
I am not sure if the issue is caused specifically by generator-angular but given the userbase of it I think it is fair to post an issue here.
The produced source maps are invalid according to https://sourcemaps.io and to support team at Sentry.
Sources property in the source map is incorrect: "sources":["../../.tmp/concat/scripts/vendor.js"].
After manual fix https://sourcemaps.io reports another problem:
SourceMap thinks that line 16 of scripts.c1767f72.js is a thing, but it's not.
Your sourcemap is referencing a line that does not exist.
In order to reproduce just pass an option to create source maps to uglify:
uglify: {
generated: {
options: {
sourceMap: true
}
}
}
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I am not sure if the issue is caused specifically by generator-angular but given the userbase of it I think it is fair to post an issue here.
The produced source maps are invalid according to https://sourcemaps.io and to support team at Sentry.
Sources property in the source map is incorrect:
"sources":["../../.tmp/concat/scripts/vendor.js"]
.After manual fix https://sourcemaps.io reports another problem:
SourceMap thinks that line 16 of scripts.c1767f72.js is a thing, but it's not.
Your sourcemap is referencing a line that does not exist.
In order to reproduce just pass an option to create source maps to uglify:
uglify: {
generated: {
options: {
sourceMap: true
}
}
}
The text was updated successfully, but these errors were encountered: