-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Missing sourcemaps #15464
Comments
I have the same issue. |
I think, this issue relates rather to |
No, this is definitely an issue here (perhaps in addition to ember-cli). |
Any help we can provide on this to get sourcemaps working again? It is quite a pain for css to not point to the correct scss file when debugging. |
I don't believe this issue relates to CSS sourcemaps at all. |
Hmm... our sourcemaps broke after upgrading to 2.14, I'll take another look to help detect the problem; didn't look into it further after seeing this issue and assuming they were related. Thanks! |
Almost a year later, this warning pops up again in my codebase when upgrading from The exact warnings are:
Googling about this only led me to this issue. Has anyone else experienced this? |
I get this error when upgrading to
[email protected]
and building the app:There are two problems with that:
I think the reason for this is that the
dist
files contain a reference to their sourcemap at the end of the file://# sourceMappingURL=ember.debug.map
. This seems to be new for 2.14, at least 2.13 did not have this. While there is adist/ember.debug.map
in the published npm package, these files are not added to thevendorTree
in index.js, so they are really missing in the tmp tree whenfast-sourcemap-concat
tries to read them.I can put a PR together exporting those files in the
vendorTree
if that is the way to go? But given there is #15102, I am not so sure about it...The text was updated successfully, but these errors were encountered: