From b58e5def5dbbb4fac5ac21ddee3001675486820c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20V=C3=A1zquez=20Acosta?= Date: Mon, 20 Nov 2023 10:13:09 +0100 Subject: [PATCH] Allow any version of node after 16. Node has recently released the version 21 (non LTS). But this tool doesn't really run in production, but in the build pipelines and developer's machines where the Node version can vary widely, but also controlled (in CI build pipelines). The only APIs which are used as fairly stable (path, and fs). So we should allow the developer to upgrade their node version and still use this plugin to build their rescript projects with Vite. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e93feba..fc3e118 100644 --- a/package.json +++ b/package.json @@ -58,6 +58,6 @@ }, "packageManager": "pnpm@8.7.6", "engines": { - "node": "^16 || ^18 || ^20" + "node": ">=16.0" } }