fix: fix sourcemap when using object as define value #15805
Merged
patak-cat merged 17 commits intovitejs:mainfrom Apr 3, 2024
Merged
fix: fix sourcemap when using object as define value #15805patak-cat merged 17 commits intovitejs:mainfrom
define value #15805patak-cat merged 17 commits intovitejs:mainfrom
Conversation
|
|
define value
hi-ogawa
commented
Feb 5, 2024
sapphi-red
previously approved these changes
Apr 3, 2024
Member
sapphi-red
left a comment
There was a problem hiding this comment.
Thanks! Would you resolve the conflicts?
hi-ogawa
commented
Apr 3, 2024
| return index === sourceIndex | ||
| }), | ||
| ) | ||
| result.map = JSON.stringify(encodedMap(new TraceMap(decoded as any))) |
Contributor
Author
There was a problem hiding this comment.
It wasn't the case before, but now it looks like this is type error. I used as any for now.
sapphi-red
approved these changes
Apr 3, 2024
Member
|
/ecosystem-ci run |
|
📝 Ran ecosystem CI on ✅ analogjs, astro, histoire, ladle, laravel, marko, nuxt, previewjs, quasar, qwik, rakkas, remix, sveltekit, unocss, vike, vite-plugin-pwa, vite-plugin-react, vite-plugin-react-pages, vite-plugin-react-swc, vite-plugin-svelte, vite-plugin-vue, vite-setup-catalogue, vitepress, vitest |
patak-cat
approved these changes
Apr 3, 2024
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.
Description
I wrote my findings in #15771 (comment). The issue seems to be esbuild including multiple
sourcesin source map when it cannot replace "define" value with primitive (esbuild example) while later pipeline for source map collapsing/remapping doesn't expect such extrasourcesentries.Since it doesn't look possible to control how esbuild output source entries, I think one way to "fix" this issue is to simply remove all extra source map entries which doesn't correspond to the original source. In this PR, I attempted this approach by using utilities from
@jridgewell/trace-mapping(which is mostly re-exports of@jridgewell/sourcemap-codec).todo
What is the purpose of this pull request?
Before submitting the PR, please make sure you do the following
fixes #123).