From 210df3b3cf942413e4cc2ca934453c227127a33d Mon Sep 17 00:00:00 2001 From: Joe Lencioni Date: Tue, 25 Jun 2024 15:34:51 -0500 Subject: [PATCH] Change package.json engines field from node 12 to 16 In https://github.com/happo/happo.io/pull/276 we replaced the jsonwebtoken package with jose, which uses syntax that does not work on node 14 or earlier. I think it might be worthwhile to make this compatibility a little more explicit in our engines field. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c26e9d8..eb409b4 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "Visual diffing for UI components", "main": "./build/index.js", "engines": { - "node": ">=12" + "node": ">=16" }, "bin": { "happo": "./build/cli.js",