Skip to content

Commit

Permalink
Change package.json engines field from node 12 to 16
Browse files Browse the repository at this point in the history
In #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.
  • Loading branch information
lencioni committed Jun 28, 2024
1 parent e1a488b commit 210df3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Visual diffing for UI components",
"main": "./build/index.js",
"engines": {
"node": ">=12"
"node": ">=16"
},
"bin": {
"happo": "./build/cli.js",
Expand Down

0 comments on commit 210df3b

Please sign in to comment.