From 736c83c62f92ca7fc547663a25a51ab5c6391737 Mon Sep 17 00:00:00 2001 From: Jelco <53396500+Jelcoo@users.noreply.github.com> Date: Wed, 3 Aug 2022 17:01:06 +0200 Subject: [PATCH] Update to required nodejs version (#474) --- community/customization/panel.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/community/customization/panel.md b/community/customization/panel.md index 4935d085..f892610b 100644 --- a/community/customization/panel.md +++ b/community/customization/panel.md @@ -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 ```