Skip to content

Commit b6fbdaa

Browse files
fix(cli): hardcoded supported Node.js version (#10742)
* fix(cli): hardcoded supported Node.js version * Create chatty-teachers-sit.md --------- Co-authored-by: Erika <[email protected]>
1 parent d532df1 commit b6fbdaa

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/chatty-teachers-sit.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"astro": major
3+
---
4+
5+
The lowest version of Node supported by Astro is now Node v18.17.1 and higher.

packages/astro/astro.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const CI_INSTRUCTIONS = {
1212
};
1313

1414
// Hardcode supported Node.js version so we don't have to read differently in CJS & ESM.
15-
const engines = '>=18.14.1';
15+
const engines = '>=18.17.1';
1616
const skipSemverCheckIfAbove = 19;
1717

1818
/** `astro *` */

0 commit comments

Comments
 (0)