sqlite: add build option to build without sqlite#58122
sqlite: add build option to build without sqlite#58122mhdawson wants to merge 4 commits intonodejs:mainfrom
Conversation
Signed-off-by: Michael Dawson <midawson@redhat.com>
|
Review requested:
|
Signed-off-by: Michael Dawson <midawson@redhat.com>
| hasIntl, | ||
| hasCrypto, | ||
| hasQuic, | ||
| hasSQLite, |
There was a problem hiding this comment.
Can we move the declaration here?
There was a problem hiding this comment.
@anonrig can you clarify what you mean on this one?
There was a problem hiding this comment.
Instead of having the variable declaration on top of the file, what about:
| hasSQLite, | |
| hasSQLite: Boolean(...), |
There was a problem hiding this comment.
That is not consistent with how any of the other ones are done as far as I can see. I was just trying to follow what seems to be existing practice.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #58122 +/- ##
==========================================
- Coverage 90.20% 90.14% -0.07%
==========================================
Files 630 630
Lines 186391 186784 +393
Branches 36612 36651 +39
==========================================
+ Hits 168134 168369 +235
- Misses 11068 11199 +131
- Partials 7189 7216 +27
🚀 New features to boost your workflow:
|
Signed-off-by: Michael Dawson <midawson@redhat.com>
|
@anonrig addressed all of your comments except the one I asked for clarification on . |
Signed-off-by: Michael Dawson <midawson@redhat.com>
Signed-off-by: Michael Dawson <midawson@redhat.com> PR-URL: #58122 Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
|
Landed in 535c2f7 |
Signed-off-by: Michael Dawson <midawson@redhat.com> PR-URL: #58122 Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Signed-off-by: Michael Dawson <midawson@redhat.com> PR-URL: #58122 Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
nodejs/node#58122 Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
nodejs/node#58122 Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
nodejs/node#58122 Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
nodejs/node#58122 Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
nodejs/node#58122 Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
nodejs/node#58122 Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
Distributors of Node.js may want to ship without all of surface area so in some cases
build time options are provided to to that.
I was asked by the RHEL team to add an option to build without sqlite so that have that
flexibility and this PR does that.