diff options
author | 2021-06-11 21:29:31 +0100 | |
---|---|---|
committer | 2021-06-11 16:29:31 -0400 | |
commit | 8d72862a98852e340d0484e3a0fdba2380568c2c (patch) | |
tree | 026581c749c6450d612b8e31facd3395ddeb7e94 | |
parent | e7eab4e9d914e1bce671616b0140a2a85634de08 (diff) | |
download | astro-8d72862a98852e340d0484e3a0fdba2380568c2c.tar.gz astro-8d72862a98852e340d0484e3a0fdba2380568c2c.tar.zst astro-8d72862a98852e340d0484e3a0fdba2380568c2c.zip |
update node min version to 14.15.1 for codesandbox (#395)
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | packages/astro/README.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package.json b/package.json index fbe3c8067..259fe0580 100644 --- a/package.json +++ b/package.json @@ -51,6 +51,6 @@ "uvu": "^0.5.1" }, "engines": { - "node": ">=14.16.1" + "node": ">=14.15.1" } } diff --git a/packages/astro/README.md b/packages/astro/README.md index f2a119306..101f67274 100644 --- a/packages/astro/README.md +++ b/packages/astro/README.md @@ -10,7 +10,7 @@ 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__. +> __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.15.1__. ```bash # create your project |