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
This is also the case when source maps contain sourceRoot with a protocol such as cog://NB with file 'Test' should display as cog://NB.Test for the displayed file but instead resolves with local file prefix and drops the // resulting in /working/directory/cog:/NB.Test
The
supportRelativeURL
function always assumes mappings are relative, even when they may be an absolute URI.Given:
c:\dir\a.min.js
file:///C:/dir/a.js
The result is
C:\dir\file:\C:\dir\a.js
when it should beC:\dir\a.js
.The issue stems from the fact node's
path.resolve
function does not interpret file URIs.The text was updated successfully, but these errors were encountered: