Plugin is incompatible with the current Node LTS version
Closed this issue · 0 comments
Dv-Andrew commented
The LTS version of the Node was recently updated and our team is faced with the problem of installing dependencies:
eslint-plugin-effector@0.14.0: The engine "node" is incompatible with this module. Expected version "^16 || ^17 || ^18 || ^19 || ^20 || ^21". Got "22.11.0"
Everything seems to work fine if we install deps using the --ignore-engines
flag (we use yarn 1.22.22
), so perhaps it will be enough just to update the list of supported engines:
"engines": {
"node": "^16 || ^17 || ^18 || ^19 || ^20 || ^21 || ^22"
},