From f0c79b8b32c21c14540e9c6e3eb94c00ff66d6d0 Mon Sep 17 00:00:00 2001 From: Emanuele Stoppa Date: Wed, 10 Apr 2024 15:13:05 +0100 Subject: [PATCH] fix(cli): hardcoded supported Node.js version --- packages/astro/astro.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/astro/astro.js b/packages/astro/astro.js index 4ba0c800d6c0..81ef7d1259f9 100755 --- a/packages/astro/astro.js +++ b/packages/astro/astro.js @@ -12,7 +12,7 @@ const CI_INSTRUCTIONS = { }; // Hardcode supported Node.js version so we don't have to read differently in CJS & ESM. -const engines = '>=18.14.1'; +const engines = '>=18.17.1'; const skipSemverCheckIfAbove = 19; /** `astro *` */