Skip to content

Commit

Permalink
Remove Node.js less than 18.19.0 support (#67)
Browse files Browse the repository at this point in the history
The `npx ls-engines` command reports as below:

```
Your “engines” field allows more node versions than your dependency graph does.

┌──────────────────────────────┬──────────────────────┐
│ Conflicting dependencies (2) │ engines.node         │
├──────────────────────────────┼──────────────────────┤
│ execa                        │ ^18.19.0 || >=20.5.0 │
├──────────────────────────────┼──────────────────────┤
│ human-signals                │ >=18.18.0            │
└──────────────────────────────┴──────────────────────┘
```
  • Loading branch information
ybiquitous committed Jun 21, 2024
1 parent 3c44d1c commit 9fa467c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

## Head

- Removed: Node.js less than `18.19.0` support.
- Fixed: missing GitHub Sponsor for `funding` field in `package.json`.

## 0.4.0

- Removed: Node.js less than 18.12.0 support.
- Removed: Node.js less than `18.12.0` support.
- Changed: bump `cosmiconfig` to v9.
- Changed: bump `execa` to v8.
- Changed: bump `ora` to v7.
Expand Down
2 changes: 1 addition & 1 deletion 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 @@ -77,6 +77,6 @@
"vitest": "^1.6.0"
},
"engines": {
"node": ">=18.12.0"
"node": ">=18.19.0"
}
}

0 comments on commit 9fa467c

Please sign in to comment.