The engine "node" is incompatible with this module. Expected version ">= 6.9.0 <= 11.0.0-0". Got "11.0.0"
Looks like package.json needs a tweak to be:
"engines": {
"node": ">= 6.9.0 <= 11.0.0"
},
Hopefully #1161 closes this issue.
In the meantime I'm using yarn install --ignore-engines to work around it. Not sure if there's an equivalent option for npm...
Most helpful comment
Hopefully #1161 closes this issue.
In the meantime I'm using
yarn install --ignore-enginesto work around it. Not sure if there's an equivalent option fornpm...