Skip to content

Commit

Permalink
upgrade to node 22
Browse files Browse the repository at this point in the history
  • Loading branch information
vorant94 committed Jul 26, 2024
1 parent b1ab84f commit 62a6ce2
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ runs:
steps:
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
cache: 'npm'

- run: npm ci --ignore-scripts --no-audit
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.12.2
22.5.1
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
}
},
{
"include": ["tsconfig.*.json"],
"include": ["**/tsconfig.json", "**/tsconfig.*.json"],
"json": {
"parser": {
"allowComments": true
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 @@ -15,7 +15,7 @@
"lefthook": "^1.7.5"
},
"engines": {
"node": ">=20"
"node": ">=22"
},
"os": ["darwin", "linux"]
}
4 changes: 2 additions & 2 deletions packages/cli/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/* Base */
"esModuleInterop": true,
"skipLibCheck": true,
"target": "ES2022",
"target": "ESNext",
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force",
Expand Down Expand Up @@ -34,7 +34,7 @@
"sourceMap": true,

/* Runtime/Framework */
"lib": ["ES2023"],
"lib": ["ESNext"],

/* Misc */
"types": ["node", "@total-typescript/ts-reset"]
Expand Down

0 comments on commit 62a6ce2

Please sign in to comment.