Conversation
timfish
added this pull request to stack #24441
September 16, 2026 17:10
timfish
marked this pull request as ready for review
September 16, 2026 17:14
Contributor
size-limit report 📦
|
timfish
force-pushed
the
feat/remove-babel-component-annotation
branch
from
September 17, 2026 09:26
355f6e2 to
0c720f4
Compare
timfish
force-pushed
the
feat/remove-babel-component-annotation
branch
from
September 20, 2026 13:17
0c720f4 to
e86a117
Compare
timfish
force-pushed
the
feat/remove-babel-component-annotation
branch
from
September 21, 2026 22:02
e86a117 to
3fadacf
Compare
timfish
force-pushed
the
feat/remove-babel-component-annotation
branch
from
September 22, 2026 10:50
3fadacf to
17262ea
Compare
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 17262ea. Configure here.
…annot load The Next.js Turbopack loader passes no logger and creates new hooks for every file, so the warning never showed there.
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.

Stacked on #24448. Every bundler integration now annotates React components with the fast oxc-based path. This PR removes the Babel fallback from that path, so
@babel/coreis no longer a runtime dependency of@sentry/bundler-plugins.The
@sentry/bundler-plugins/babel-pluginexport stays, because the React Native SDK uses it with Metro. The plugin only imports Babel types and runs inside the user's own Babel. So@babel/coremoves todevDependenciesand becomes an optional peer dependency, and the export keeps working.Without the fallback,
oxc-parserleaves a file it cannot parse unchanged, and the bundler reports the syntax error. If no parser can load, for example on a platform without anoxc-parsernative binary, the plugin logs one warning and skips annotations.Fixes #24415