Skip to content
Open
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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@redocly/cli": "^2.11.1",
"analytics": "^0.2.0",
"analytics-plugin-ga": "^0.2.0",
"ava": "^5.3.1",
"ava": "^6.4.1",
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

critical

Upgrading ava to version 6.x introduces a new minimum Node.js version requirement. According to the ava@6.0.0 release notes, it requires Node.js 18.18, 20.8, or 21.

Your package.json currently declares support for Node.js >=14 in the engines field. This mismatch will cause the tests to fail on older Node.js versions that are supposedly supported.

To resolve this, you must update the engines field in package.json to reflect the new requirement, for example:

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

Please be aware that this is a breaking change for the consumers of this package who might be using older Node.js versions.

"cp-file": "^7.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^8.10.0",
Expand Down