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:
parent
d532df1222
commit
b6fbdaa94a
2 changed files with 6 additions and 1 deletions
5
.changeset/chatty-teachers-sit.md
Normal file
5
.changeset/chatty-teachers-sit.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"astro": major
|
||||
---
|
||||
|
||||
The lowest version of Node supported by Astro is now Node v18.17.1 and higher.
|
|
@ -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 *` */
|
||||
|
|
Loading…
Reference in a new issue