From f72a786507920153f63ff38c3e2e7def4d0b7d39 Mon Sep 17 00:00:00 2001 From: Bobby Date: Sun, 23 Apr 2023 08:19:15 +0700 Subject: [PATCH] fix: bumped minimum node version to >= 16.0.0 there was an oversight in that, the version of hyper-express we have been using in the past few months, depended on a version of uwebsockets.js that already dropped support for node 14 https://github.com/uNetworking/uWebSockets.js/releases/tag/v20.14.0 additionally, a recent hyper-express update, which will be committed soon after this commit, will depend on a version of uwebsockets.js that officially only supports the last 3 LTS versions (16, 18, and 20) https://github.com/kartikk221/hyper-express/releases/tag/6.5.9 then there's also the fact that node 14 will reach EOL by next week, or 30 April 2023 https://github.com/nodejs/release#release-schedule with all those considered, i will also be officially dropping support for node 14, albeit a week early than node's team --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b32e7bd..65bc0ab 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "url": "https://github.com/BobbyWibowo/lolisafe/issues" }, "engines": { - "node": ">=14.21.1" + "node": ">=16.0.0" }, "license": "MIT", "scripts": {