Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
25.7.0
25.8.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.

medium

To ensure all developers use the correct Node.js version and to leverage built-in checks from package managers like npm and Yarn, it's a good practice to also specify the supported Node.js engine in your project's package.json file(s). This complements the .node-version file, which is often used by tools like nvm.

For example, you could add the following to website/package.json:

"engines": {
  "node": ">=25.8.0"
}

Loading