From 7b60d8cf9e61b84582ffc40f9ff2ffa2a6d99053 Mon Sep 17 00:00:00 2001 From: Alexandr Kravchuk Date: Tue, 17 Mar 2026 12:14:36 +0100 Subject: [PATCH] chore: update Node.js version requirement to >=16 Node.js 14 reached end-of-life on 2023-04-30 and is no longer supported. Current project dependencies (xo@0.57) require Node.js 15+ for ES2021 features like logical assignment operators (&&=). This aligns the package.json engines field with actual compatibility. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c9e0dc5..07b126c 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "types": "./source/index.d.ts", "sideEffects": false, "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" + "node": ">=16.0.0" }, "scripts": { "test": "xo && c8 ava && tsd",