-
Notifications
You must be signed in to change notification settings - Fork 71
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
Update source-map #27
Conversation
Codecov Report
@@ Coverage Diff @@
## master #27 +/- ##
=======================================
Coverage 70.84% 70.84%
=======================================
Files 11 11
Lines 415 415
Branches 64 64
=======================================
Hits 294 294
Misses 121 121 Continue to review full report at Codecov.
|
Can we get this merged please?? See @Hotell above |
Working on getting someone with access to land this & get it out to npm. |
Hi so sorry about the delay on this @sokra and myself are catching up from a week off. Will try to deliver this tonight |
https://github.com/webpack/webpack-sources/releases/tag/v1.0.2 Release'd and available on NPM. Sorry for the delay, and really appreciate the patience. |
This update seems to create another issue (noting this here as I'm not sure what is the root cause of this atm):
Reverting to v1.0.1 resolves this issue. |
@mattdsteele are you aware of this? Should we submit an issue on the original source-map repo IRT this? |
Hmm; I haven't tried to reproduce. I'll see what's up. |
@wvankuipers I pulled down 1.0.2 in a couple of my projects but I wasn't able to reproduce what you're seeing. Based on what you've researched in #28 it appears to be source-map related, so that repo probably should be notified. |
There is more information in the new issue created, it's not directly related to webpack-sources |
This fixes compilation on Node 6.x. Should be removed later when this bug is fixed in webpack-sources. webpack/webpack-sources#27 (comment)
Hi! This applies the fix as identified in mozilla/source-map#247
I've got a project that fails to build with the
TypeError: Cannot read property 'substr' of undefined
error as outlined in the above link. Manually updatingsource-map
resolves it, and unfortunately we can't build our project untilwebpack-sources
uses this version.Thanks!