-
Notifications
You must be signed in to change notification settings - Fork 30.5k
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
lib: filter node:quic from builtinModules when flag not used #56870
lib: filter node:quic from builtinModules when flag not used #56870
Conversation
Review requested:
|
This comment was marked as outdated.
This comment was marked as outdated.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #56870 +/- ##
==========================================
- Coverage 89.16% 89.16% -0.01%
==========================================
Files 665 665
Lines 192602 192606 +4
Branches 37052 37055 +3
==========================================
- Hits 171743 171740 -3
- Misses 13668 13679 +11
+ Partials 7191 7187 -4
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is fine, but is this really the only module gated behind a flag? I thought sqlite was still flagged too. If not, and if this is how it was gated before, then ofc this is perfect :-)
(a test would be nice tho)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
Landed in 2972fe9 |
PR-URL: #56870 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Make sure
node:quic
is not included inmodule.builtinModules
when the--experimental-quic
flat is not used.