-
Notifications
You must be signed in to change notification settings - Fork 46.9k
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
[compiler] health-check : improve check logic for next.js' stirctMode #30099
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Hi @coleea! Thank you for your pull request and welcome to our community. Action RequiredIn order to merge any pull request (code, docs, etc.), we require contributors to sign our Contributor License Agreement, and we don't seem to have one on file for you. ProcessIn order for us to review and merge your suggested changes, please sign at https://code.facebook.com/cla. If you are contributing on behalf of someone else (eg your employer), the individual CLA may not be sufficient and your employer may need to sign the corporate CLA. Once the CLA is signed, our tooling will perform checks and validations. Afterwards, the pull request will be tagged with If you have received this in error or have any questions, please contact us at cla@meta.com. Thanks! |
Comparing: f5d2feb...f9baf6f Critical size changesIncludes critical production bundles, as well as any change greater than 2%:
Significant size changesIncludes any change greater than 0.2%: Expand to show
|
Thank you for signing our Contributor License Agreement. We can now accept your code for this (and any) Meta Open Source project. Thanks! |
I don't think what this The react frameworks are made continuously. Whenever the new frameworks are released, should |
This pull request has been automatically marked as stale. If this pull request is still relevant, please leave any comment (for example, "bump"), and we'll keep it open. We are sorry that we haven't been able to prioritize reviewing it yet. Your contribution is very much appreciated. |
Closing this pull request after a prolonged period of inactivity. If this issue is still present in the latest release, please ask for this pull request to be reopened. Thank you! |
Summary
How did you test this change?
I published changed code to https://www.npmjs.com/package/react-compiler-test
I created two next.js project. the one is app route-based and another one is page route-based
I tested every possible scenario (by running
npx react-compiler-test
.3-1) App router +
reactStrictMode: true
=> strict mode.3-2) App router +
reactStrictMode: false
=> non-strict mode.3-3) App router +
reactStrictMode option is not set
=> strict mode.3-4) Page router +
reactStrictMode: true
=> strict mode.3-5) Page router +
reactStrictMode: false
=> non-strict mode.3-6) Page router +
reactStrictMode option is not set
=> non-strict mode.Test passed every case. the previous PR #29167 not covered the 3rd case.
Plus, I added some minor changes. the previous PR can cover
reactStrictMode: true
but does not coverreactStrictMode : true
orreactStrictMode : true
. I modified code to detect whitespace between reactStrictMode and:
.In addition, if
<StrictMode>
component is in comment (eg :// <StrictMode></StrictMode>
) , prevent recognizing it as a valid component.In fact, multi-line comment also should be detected. However, it is difficult to detect this by regular expressions alone.
multi-line comment has three possible case
1)
More sophisticated methods are needed to separate the three cases (eg : esprima). However, they were excluded from this PR.