From 36171d1a8359069bf3a7edb0f9671a80690b5b43 Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Fri, 5 Feb 2021 02:44:07 +0000 Subject: [PATCH] Build/Test Tools: Specify a version range within `engines` for `node` and `npm`. This makes it more clear what versions of `node` and `npm` will successfully build WordPress. Props dd32, mkaz. Fixes #52455. See #51749. git-svn-id: https://develop.svn.wordpress.org/trunk@50185 602fd350-edb4-49c9-b593-d223f7449a82 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index c270e26c93..474d92cd30 100644 --- a/package.json +++ b/package.json @@ -7,8 +7,8 @@ "url": "https://develop.svn.wordpress.org/trunk" }, "engines": { - "node": "14.15.0", - "npm": "6.14.8" + "node": ">=14.15.0", + "npm": ">=6.14.8" }, "author": "The WordPress Contributors", "license": "GPL-2.0-or-later",