From 5dec67cb9fa875976023dbe62e1a5f7425acf431 Mon Sep 17 00:00:00 2001 From: Andrew Hood Date: Sat, 19 Aug 2023 17:56:46 -0700 Subject: [PATCH] Strictly enforce the node version required This is helpful to avoid versions that will fail and with loud npm install output, warnings can go unseen. With this change because of the engine requirements specified upstream by the minecraft-protocol package if someone attempts to npm install with an unsupported version of node the process will abort with an error. --- .npmrc | 1 + 1 file changed, 1 insertion(+) create mode 100644 .npmrc diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..b6f27f1 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +engine-strict=true