From e7acafbeef8ca078b37aa3072519203d21d0b982 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Tue, 11 Jan 2022 14:22:25 -0800 Subject: [PATCH] package.json: fix invalid syntax in `engines` (#1666) `!` is not supported by the semver library. This fixes a regression in v7 when used with engine-strict mode. While the change in this PR may look similar to the state before #1660, it differs by using two pipe characters instead of one. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ea1f9f4fd..1b41b78e0 100644 --- a/package.json +++ b/package.json @@ -75,7 +75,7 @@ "zuul": "^3.12.0" }, "engines": { - "node": ">=6.4.0 !13" + "node": ">=6.4.0 <13 || >=14" }, "homepage": "https://github.com/visionmedia/superagent", "husky": {