-
-
Notifications
You must be signed in to change notification settings - Fork 169
Closed
Labels
Description
Motivation
Support node 19 now that it has been officially released by node, see:
Current behavior
We have automated unit tests that run across all officially supported node versions, maintenance, active lts, and current. Today the ones running against current started failing when trying to install dependencies with the following error:
error eslint-plugin-jsdoc@39.3.13: The engine "node" is incompatible with this module. Expected version "^14 || ^16 || ^17 || ^18". Got "19.0.0"
Desired behavior
Installing eslint-plugin-jsdoc when using node 19 should work.
Alternatives considered
We could use something like yarn install --ignore-engines as a workaround but that opens us up to compatibility errors that will only show up at runtime.
cristiand391, jokay and yan12125cromwellryan