From 9f4801a4e35648e27589fc89e048457ffaf68c72 Mon Sep 17 00:00:00 2001 From: tycrek Date: Mon, 12 Jul 2021 12:03:36 -0600 Subject: [PATCH] cannot use Node 16 for now, waiting on: https://github.com/LinusU/fs-temp/pull/6 --- checkEngine.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/checkEngine.js b/checkEngine.js index 6833002..dd277fb 100644 --- a/checkEngine.js +++ b/checkEngine.js @@ -11,7 +11,7 @@ function doCheck() { : reject(Object.entries(versions) .filter(([, { isSatisfied }]) => (!isSatisfied)) .map(([packageName, { version: current, wanted: minimum }]) => - `\nInvalid ${packageName} version!\n- Current: ${current}\n- Minimum: ${minimum}`) + `\nInvalid ${packageName} version!\n- Current: ${current}\n- Required: ${minimum}`) .join('') .concat('\nPlease update to continue!')))); } diff --git a/package.json b/package.json index 3010acf..0cb576d 100755 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "The superior self-hosted ShareX server", "main": "ass.js", "engines": { - "node": ">=14.x.x", + "node": ">=14.7.x <16", "npm": ">=7.x.x" }, "scripts": {