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 .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [18.18.0, 20.9.0, 22, 24]
node-version: [20.9.0, 22, 24]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v4
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ MIT © [Roger Chappel](https://github.com/rogerchappel)

## Development

Typegap supports Node.js 18.18+, 20.9+, and 22 or newer. Node.js 19 and 21
are not supported because the shipped runtime dependency set does not support
Typegap supports Node.js 20.9+ and 22 or newer. Node.js 21
is not supported because the shipped runtime dependency set does not support
those releases.

Run the same release gate used by CI before opening a PR:
Expand Down
71 changes: 5 additions & 66 deletions package-lock.json

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

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
},
"homepage": "https://github.com/rogerchappel/typegap#readme",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=22.0.0"
"node": "^20.9.0 || >=22.0.0"
},
"dependencies": {
"@typescript-eslint/typescript-estree": "^8.0.0",
Expand All @@ -65,7 +65,8 @@
"picocolors": "^1.0.0"
},
"overrides": {
"glob": "$glob"
"glob": "$glob",
"brace-expansion": "5.0.8"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
Expand Down
Loading