Add sourceMapRelativePaths option for portable sourcemaps#1624
Open
bartvandenende-wm wants to merge 4 commits intorokucommunity:masterfrom
Open
Add sourceMapRelativePaths option for portable sourcemaps#1624bartvandenende-wm wants to merge 4 commits intorokucommunity:masterfrom
sourceMapRelativePaths option for portable sourcemaps#1624bartvandenende-wm wants to merge 4 commits intorokucommunity:masterfrom
Conversation
…urcemaps Adds a new `sourceMapRelativePaths` bsconfig option (default: false) that converts absolute source paths in generated .map files to paths relative to the map file location. This makes sourcemaps portable across machines. Resolves rokucommunity#1156 Co-authored-by: Cursor <cursoragent@cursor.com>
Document the new sourceMapRelativePaths option and the previously undocumented sourceMap option in docs/bsconfig.md. Co-authored-by: Cursor <cursoragent@cursor.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a new
sourceMapRelativePathsbsconfig option that emits relative file paths in sourcemapsourcesinstead of absolute paths. This makes sourcemaps portable across different machines and CI environments.Resolves #1156
Problem
Sourcemaps currently embed absolute paths (e.g.
/home/runner/work/project/src/main.bs). When build output is moved to another machine -- for example when libraries are published to npm and consumed elsewhere -- these paths no longer resolve and debugging tools cannot locate the original source files.Solution
A new boolean config option
sourceMapRelativePaths(default:false) post-processes the generated sourcemap at serialization time, converting absolutesourcesentries to paths relative to the.mapfile location. For example:VSCode extension compatibility
In the issue, @TwitchBronBron noted:
After inspecting the roku-debug source, this concern does not apply. The
SourceMapManager.set()method already resolves source paths usingpath.resolve():