mirror of
https://github.com/withastro/astro.git
synced 2024-12-30 22:03:56 -05:00
Document the minimum node version (#379)
* Document the minimum node version * Adds the changeset
This commit is contained in:
parent
cc5d000fdc
commit
ce9336115e
3 changed files with 10 additions and 0 deletions
5
.changeset/eleven-zebras-care.md
Normal file
5
.changeset/eleven-zebras-care.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'astro': minor
|
||||
---
|
||||
|
||||
Set the minimum Node version in the engines field
|
|
@ -49,5 +49,8 @@
|
|||
"tiny-glob": "^0.2.8",
|
||||
"typescript": "^4.2.4",
|
||||
"uvu": "^0.5.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=14.16.1"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,6 +10,8 @@ With Astro, you can use your favorite JavaScript framework and automatically shi
|
|||
|
||||
## 🔧 Quick Start
|
||||
|
||||
> __Important__: Astro is built with [ESM modules](https://nodejs.org/api/esm.html) which are not supported in older version of Node.js. The minimum supported version is __14.16.1__.
|
||||
|
||||
```bash
|
||||
# create your project
|
||||
mkdir new-project-directory
|
||||
|
|
Loading…
Reference in a new issue