Skip to content

Commit aae6e7c

Browse files
chore!: drop support for Node 18 and 20
BREAKING CHANGE: drop support for Node 18 and 20 and require Node 22 LTS or more recent
1 parent 43e40d6 commit aae6e7c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
node-version: [20]
10+
node-version: [22]
1111
steps:
1212
- uses: actions/checkout@v2
1313
- uses: actions/setup-node@v2
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
strategy:
2525
matrix:
26-
node-version: [20]
26+
node-version: [22]
2727
steps:
2828
- uses: actions/checkout@v2
2929
- uses: actions/setup-node@v2

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v20
1+
v22

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"fastify-schema-to-typescript": "./dist/src/cli.js"
88
},
99
"engines": {
10-
"node": ">=18.0.0"
10+
"node": ">=22.0.0"
1111
},
1212
"scripts": {
1313
"prepare": "husky",

0 commit comments

Comments
 (0)