From b9b28e229af539fee536d0f21bdb68a2e61b299f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Exbrayat?= Date: Wed, 1 Sep 2021 22:39:09 +0200 Subject: [PATCH] chore: set node engine to v16 (#4471) As some packages rely on the experimental "stream/web" package only available in node v16.5+, this commit updates the `engines` property to reflect that. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 152005c13..25c281ca4 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ ] }, "engines": { - "node": ">=10.0.0" + "node": ">=16.5.0" }, "devDependencies": { "@babel/types": "^7.12.0",