From afb94bbaeb1d0b036f6bbc19232b6a248d7dbc01 Mon Sep 17 00:00:00 2001 From: Buns <68980965+BunsDev@users.noreply.github.com> Date: Sun, 3 Jul 2022 02:34:13 -0500 Subject: [PATCH] Fix: failed node version The engine "node" is incompatible with this module. Expected version "12.14.1". Got "12.22.11" --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 783511e29d2..c6d5a6a6ce6 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "description": "MyCrypto is a free, open-source interface for interacting with the blockchain", "repository": "https://github.com/MyCryptoHQ/MyCrypto", "engines": { - "node": "12.14.1", + "node": ">=12.14.1", "npm": ">= 6.4.1", "yarn": ">= 1.19.1" },