mirror of
https://github.com/actions/github-script.git
synced 2026-02-08 03:57:27 +00:00
chore: 🤖 allow Node versions 21 and 22
This Feb, Node.js 22 became the Active LTS version. With the engine restriction it's impossible to build to package on a newer Node.js version. Local testing showed that the package works fine on Node.js 22, thus the update.
This commit is contained in:
parent
3908079ba1
commit
f7a6e2b59a
1 changed files with 1 additions and 1 deletions
|
|
@ -8,7 +8,7 @@
|
||||||
"types": "types/async-function.d.ts",
|
"types": "types/async-function.d.ts",
|
||||||
"private": true,
|
"private": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=20.0.0 <21.0.0"
|
"node": ">=20.0.0 <23.0.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "npm run build:types && ncc build src/main.ts",
|
"build": "npm run build:types && ncc build src/main.ts",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue