From eabfdca2fcebab0423485045612f4e1604a12bff Mon Sep 17 00:00:00 2001 From: Matt Godbolt Date: Mon, 10 Jan 2022 22:38:43 -0600 Subject: [PATCH] Bump to new LTS version 16 node --- README.md | 2 +- etc/scripts/find-node | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 81ba764a3..989b76524 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ Assuming you have a compatible version of `node` installed, on Linux simply runn on your local machine: [http://localhost:10240/](http://localhost:10240/). If this doesn't work for you, please contact us, as we consider it important you can quickly and easily get running. Currently, **Compiler Explorer** - requires [`node` 14 _(LTS version)_](CONTRIBUTING.md#node-version) installed, either on the path or at `NODE_DIR` + requires [`node` 16 _(LTS version)_](CONTRIBUTING.md#node-version) installed, either on the path or at `NODE_DIR` (an environment variable or `make` parameter). Running with `make EXTRA_ARGS='--language LANG'` will allow you to load diff --git a/etc/scripts/find-node b/etc/scripts/find-node index 91d04cc16..c15b209db 100755 --- a/etc/scripts/find-node +++ b/etc/scripts/find-node @@ -25,7 +25,7 @@ find_node() { NODE="$(find_node)" NODE_MIN_VERSION=14 -NODE_VERSION_USED=14 +NODE_VERSION_USED=16 NODE_VERSION=$(${NODE} --version) NODE_MAJOR_VERSION=$(echo "${NODE_VERSION}" | cut -f1 -d. | sed 's/^v//g')