Allow newer versions of node in package.json

Till now, they had to be strictly equal to 12.x. Now you can also
use newer versions of node (and hopefully they'll work 😛)
This commit is contained in:
Hippo 2021-07-25 17:26:42 +05:30
parent 42f96c00b9
commit ab5ced7c6a
1 changed files with 1 additions and 1 deletions

View File

@ -47,6 +47,6 @@
"webpack-node-externals": "^1.7.2"
},
"engines": {
"node": "12.x"
"node": ">=12.x"
}
}