We're trying to use the package in our project, and currently it requires an exact match for the Node/NPM versions:
"engines": {
"node": "14.15.0",
"npm": "6.14.8"
}
Are these constraints necessary? Or if they are, would it be possible to loosen the constraints to a reasonable minimum like below?
"engines": {
"node": "^14",
"node": "^6",
}
Right now the package won't even install - using --ignore-engines makes the installation proceed to the postinstall step, but then it fails there instead.
We're trying to use the package in our project, and currently it requires an exact match for the Node/NPM versions:
Are these constraints necessary? Or if they are, would it be possible to loosen the constraints to a reasonable minimum like below?
Right now the package won't even install - using
--ignore-engines
makes the installation proceed to the postinstall step, but then it fails there instead.