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
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Requirements

- Node.js `^20.19.0`, `^22.13.0`, or `>=24.0.0`
- Node.js `^20`, `^22`, or `^24`
Copy link

Copilot AI Apr 2, 2026

Choose a reason for hiding this comment

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

CONTRIBUTING now says Node.js ^20, ^22, or ^24, but devDependencies introduced/updated here (notably ESLint) require at least Node ^20.19.0 / ^22.13.0 (per package-lock). Consider keeping the documented minimums at patch level to avoid contributors hitting engine/runtime errors on earlier minor versions.

Suggested change
- Node.js `^20`, `^22`, or `^24`
- Node.js `^20.19.0`, `^22.13.0`, or `^24`

Copilot uses AI. Check for mistakes.
- npm

## Setup
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Reusable TypeScript type guards for narrowing `unknown` values in application an
npm install @coderrob/typescript-type-guards
```

The package and its development tooling require Node.js `^20.19.0`, `^22.13.0`, or `>=24.0.0`.
The package and its development tooling require Node.js `^20`, `^22`, or `^24`.
Copy link

Copilot AI Apr 2, 2026

Choose a reason for hiding this comment

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

This Node.js requirement is now stated as ^20, ^22, or ^24, but the updated ESLint toolchain requires at least Node ^20.19.0 / ^22.13.0 (see package-lock engines). As written, the README could mislead users into using unsupported earlier 20.x/22.x releases; consider restoring the patch-level minimums (and/or referencing package.json#engines).

Suggested change
The package and its development tooling require Node.js `^20`, `^22`, or `^24`.
The package and its development tooling require Node.js `^20.19.0`, `^22.13.0`, or `^24`.

Copilot uses AI. Check for mistakes.

## Usage

Expand Down
Loading