Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20.x
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"private": true,
"license": "AGPL-3.0",
"packageManager": "pnpm@10.28.2",
"engines": {
"node": ">=20.0.0"
},
Comment on lines +6 to +8
Copy link

Copilot AI Feb 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

engines.node is set to ">=20.0.0", which still allows Node 24+ on platforms that use engines for version selection (including Vercel in some configurations). If the goal is to avoid better-sqlite3 source builds by pinning Node 20, consider using "20.x" (or a bounded range like ">=20 <21") so the setting actually enforces the intended major version.

Copilot uses AI. Check for mistakes.
"pnpm": {
"onlyBuiltDependencies": [
"@nestjs/core",
Expand Down