From f7a6e2b59aabfb8f4ea2e170d3c8534ed1bb1cd7 Mon Sep 17 00:00:00 2001 From: Roman Prudnikov Date: Wed, 19 Mar 2025 10:49:34 +0100 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=A4=96=20allow=20Node=20versions?= =?UTF-8?q?=2021=20and=2022?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 288efac..5fb83d9 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "types": "types/async-function.d.ts", "private": true, "engines": { - "node": ">=20.0.0 <21.0.0" + "node": ">=20.0.0 <23.0.0" }, "scripts": { "build": "npm run build:types && ncc build src/main.ts",