bump to node24

This commit is contained in:
2025-09-05 18:30:49 +02:00
parent 37b7b07e3f
commit 8d05205688
3 changed files with 3 additions and 3 deletions

2
.nvmrc
View File

@@ -1 +1 @@
v20
24

View File

@@ -17,5 +17,5 @@ outputs:
description: "The new incremented git tag"
runs:
using: "node20"
using: "node24"
main: "dist/index.js"

View File

@@ -4,7 +4,7 @@
"main": "src/index.ts",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "esbuild src/index.ts --bundle --outfile=dist/index.js --platform=node --target=node20 --minify",
"build": "esbuild src/index.ts --bundle --outfile=dist/index.js --platform=node --target=node24 --minify",
"test": "jest",
"format": "prettier --write src/**/*.ts"
},