Conversation
Member
Author
|
bugbot run |
chargome
force-pushed
the
charlygomez/js-3765-add-remix-3-export-subpaths-and-optional-peer-deps
branch
from
September 24, 2026 12:42
f21dd5e to
95e9e36
Compare
chargome
added this pull request to stack #24699
September 24, 2026 12:42
Prepares @sentry/remix to hold Remix 3 support. No instrumentation yet, the v3 entries are placeholders. Fixes #24662 Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
chargome
force-pushed
the
charlygomez/js-3765-add-remix-3-export-subpaths-and-optional-peer-deps
branch
from
September 24, 2026 12:49
95e9e36 to
3479f10
Compare
Member
Author
|
bugbot run |
There was a problem hiding this comment.
✅ Bugbot reviewed your changes and found no new issues!
Comment @cursor review or bugbot run to trigger another review on this PR
Reviewed by Cursor Bugbot for commit 3479f10. Configure here.
Contributor
size-limit report 📦
|
chargome
marked this pull request as ready for review
September 24, 2026 13:11
chargome
requested review from
nicohrubec and
s1gr1d
and removed request for
a team
September 24, 2026 13:12
This branch has not been deployed
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.
Prepares
@sentry/remixto hold Remix 3 support. No instrumentation yet, the v3 entries are placeholders.remixis added as one. They were required, so npm would install React and@remix-run/nodeinto a Remix 3 app../v3,./v3/client,./v3/node. Remix 3's asset server rejects CommonJS, so arequirecondition could never load.enginesis unchanged, becauseremixalready requires Node 24.3 or newer.remixpeer is>=3.0.0-rc.1 <4, not3.x. Semver ranges exclude prereleases, so3.xwould not match the release candidate the alpha targets../v3/clientdoes not yet exportinitpreserveModulesRoot: 'src'is needed or the v3 entries land outsidebuild/esm/v3/. A clean-build diff confirms it moves nothing else.Not addressed here: React still arrives transitively via
@sentry/react, and CJS output ships unreferenced for the v3 entries.The e2e app is stacked on top in #24698.
Fixes #24662