Skip to content

Commit b6ab123

Browse files
committed
package.json: Allow any version of node that supports the syntax
There's no reason to exclude newer versions of Node in the engines field, and it causes errors for users of the package when installing. Anything from Node 8 on can run this code.
1 parent fb96ee9 commit b6ab123

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,6 @@
8383
"react-dom": "^15.3.0 || ^16.0.0"
8484
},
8585
"engines": {
86-
"node": "^12 || ^10 || ^8"
86+
"node": ">= 8"
8787
}
8888
}

0 commit comments

Comments
 (0)