diff options
author | Claire <claire.github-309c@sitedethib.com> | 2023-01-05 13:47:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-05 13:47:36 +0100 |
commit | bf5fc2085839ddc99a5e6668980f5026f751f0f8 (patch) | |
tree | 7be19370d3c0cc47bab9a6739f8097bfeb13fc83 | |
parent | 18fb01ef7ca3829b07bb8ea101bdd073da72cfbc (diff) |
Downgrade Node.js requirement to 14+ (#22342)
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | package.json | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md index d502ce480..8f996cc26 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ Mastodon acts as an OAuth2 provider, so 3rd party apps can use the REST and Stre - **PostgreSQL** 9.5+ - **Redis** 4+ - **Ruby** 2.7+ -- **Node.js** 16+ +- **Node.js** 14+ The repository includes deployment configurations for **Docker and docker-compose** as well as specific platforms like **Heroku**, **Scalingo**, and **Nanobox**. For Helm charts, reference the [mastodon/chart repository](https://github.com/mastodon/chart). The [**standalone** installation guide](https://docs.joinmastodon.org/admin/install/) is available in the documentation. diff --git a/package.json b/package.json index 291bd416c..3c0ffdc1b 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@mastodon/mastodon", "license": "AGPL-3.0-or-later", "engines": { - "node": ">=16" + "node": ">=14" }, "scripts": { "postversion": "git push --tags", |