-
-
Notifications
You must be signed in to change notification settings - Fork 509
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor(transformer): improve parsing React pragmas #6138
refactor(transformer): improve parsing React pragmas #6138
Conversation
Your org has enabled the Graphite merge queue for merging into mainAdd the label “0-merge” to the PR and Graphite will automatically add it to the merge queue when it’s ready to merge. Or use the label “hotfix” to add to the merge queue as a hot fix. You must have a Graphite account and log in to Graphite in order to use the merge queue. Sign up using this link. |
This stack of pull requests is managed by Graphite. Learn more about stacking. Join @overlookmotel and the rest of your teammates on |
CodSpeed Performance ReportMerging #6138 will not alter performanceComparing Summary
|
Merge activity
|
If comment starts with `@jsxRuntime`, it can't also start with `@jsxImportSource` etc. So bail out earlier.
a9fd88a
to
0836f6b
Compare
edaefa6
to
375bebe
Compare
## [0.30.5] - 2024-09-29 ### Features - 15552ac napi/transform: Display semantic error (#6160) (Boshen) - f50fdcd napi/transform: Make react refresh option take a boolean (#6146) (Boshen) ### Bug Fixes - f27d59f napi/transform: Remove confusing `jsx` option (#6159) (Boshen) - bfd1988 transformer/react: Should not collect use-hooks if it's a nested member expression (#6143) (Dunqing) ### Refactor - ab187d1 codegen: Restrict visibility of internal methods (#6145) (DonIsaac) - 375bebe transformer: Improve parsing React pragmas (#6138) (overlookmotel) - 0836f6b transformer: Move parsing pragmas into TS transform (#6137) (overlookmotel) - 30424fa transformer: TS transforms only store options they need (#6135) (overlookmotel) --------- Co-authored-by: Boshen <[email protected]> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
If comment starts with
@jsxRuntime
, it can't also start with@jsxImportSource
etc. So bail out earlier.