Skip to content
This repository was archived by the owner on Apr 15, 2026. It is now read-only.
Closed
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
20 changes: 11 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/lunr": "^2.3.7",
"@types/node": "^20.12.12",
"@types/node": "^25.5.0",
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🔴 @types/node major version (25) mismatches project's target Node.js version (20)

The .nvmrc file specifies Node 20 as the target runtime, but this PR bumps @types/node from ^20.12.12 (which correctly matched the target) to ^25.5.0. Since @types/node major versions correspond to Node.js major versions, this introduces type definitions for Node 25 APIs that do not exist in Node 20. TypeScript will happily compile code that uses Node 25-only APIs, but those calls will fail at runtime on the Node 20 environment this project targets. The previous ^20.12.12 was correctly aligned with .nvmrc.

Suggested change
"@types/node": "^25.5.0",
"@types/node": "^20.12.12",
Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

"tsx": "^4.15.0",
"typescript": "^5.4.5",
"vitest": "^4.0.16"
Expand Down
Loading