From a00633e3e1e01674366d8abbd5b01e70560eba68 Mon Sep 17 00:00:00 2001 From: Jan Kassens Date: Mon, 5 Aug 2024 14:21:41 -0400 Subject: [PATCH] Replace NodeJS 21 with 22 in devEngines field 21 is EOL and 22 is stable now. Homebrew installs 22 by default as well which is the practical reason for me to update this. --- fixtures/flight/package.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fixtures/flight/package.json b/fixtures/flight/package.json index f07b667dab910..a0505629baacf 100644 --- a/fixtures/flight/package.json +++ b/fixtures/flight/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "private": true, "devEngines": { - "node": "20.x || 21.x" + "node": "20.x || 22.x" }, "dependencies": { "@babel/core": "^7.16.0", diff --git a/package.json b/package.json index 82a578e1f3fa9..4507b9b8e6c65 100644 --- a/package.json +++ b/package.json @@ -103,7 +103,7 @@ "yargs": "^15.3.1" }, "devEngines": { - "node": "16.x || 18.x || 20.x || 21.x" + "node": "16.x || 18.x || 20.x || 22.x" }, "jest": { "testRegex": "/scripts/jest/dont-run-jest-directly\\.js$"