0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-30 22:03:56 -05:00

fix(cli): hardcoded supported Node.js version (#10742)

* fix(cli): hardcoded supported Node.js version

* Create chatty-teachers-sit.md

---------

Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com>
This commit is contained in:
Emanuele Stoppa 2024-08-06 10:23:22 +01:00 committed by GitHub
parent d532df1222
commit b6fbdaa94a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
"astro": major
---
The lowest version of Node supported by Astro is now Node v18.17.1 and higher.

View file

@ -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 *` */