From c7bdd3ace124598719bac50c0c975fb0f5018f19 Mon Sep 17 00:00:00 2001 From: Jacob Weisz Date: Tue, 6 Sep 2022 14:42:04 -0500 Subject: [PATCH] Node: 16.x is the active LTS --- stacks/node/setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stacks/node/setup.sh b/stacks/node/setup.sh index ba31860..cd5914e 100755 --- a/stacks/node/setup.sh +++ b/stacks/node/setup.sh @@ -14,12 +14,12 @@ set -euo pipefail export DEBIAN_FRONTEND=noninteractive -echo "Installing the NodeSource Node.js 14.x repo..." +echo "Installing the NodeSource Node.js 16.x repo..." apt-get update apt-get install -qq apt-transport-https -curl -sL https://deb.nodesource.com/setup_14.x | bash - +curl -sL https://deb.nodesource.com/setup_16.x | bash - # Actually install node apt-get install -qq nodejs git-core g++