Update to required nodejs version (#474)

This commit is contained in:
Jelco 2022-08-03 17:01:06 +02:00 committed by GitHub
parent 796913afb9
commit 736c83c62f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,11 +17,11 @@ The build tools require NodeJS, yarn is used as the package manager.
```bash
# Ubuntu/Debian
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
apt install -y nodejs
# CentOS
curl -sL https://rpm.nodesource.com/setup_14.x | sudo -E bash -
curl -sL https://rpm.nodesource.com/setup_16.x | sudo -E bash -
sudo yum install -y nodejs yarn # CentOS 7
sudo dnf install -y nodejs yarn # CentOS 8
```