You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PR #1569 caused some unmet peer dependency errors. In my package that uses @inquirer/confirm@5.0.0 (via msw), Yarn 3.6.1 emits:
➤ YN0002: │ @inquirer/confirm@npm:5.0.0 doesn't provide @types/node (...), requested by @inquirer/type
➤ YN0002: │ @inquirer/core@npm:10.0.0 doesn't provide @types/node (...), requested by @inquirer/type
The rule Yarn applies is that all packages should either satisfy the peer dependencies of their dependencies, or redeclare them in their own peer dependencies. Looks like this could be solved by adding @types/node to the peer dependencies of @inquirer/core and @inquirer/confirm.
The text was updated successfully, but these errors were encountered:
PR #1569 caused some unmet peer dependency errors. In my package that uses
@inquirer/confirm@5.0.0
(viamsw
), Yarn 3.6.1 emits:The rule Yarn applies is that all packages should either satisfy the peer dependencies of their dependencies, or redeclare them in their own peer dependencies. Looks like this could be solved by adding
@types/node
to the peer dependencies of@inquirer/core
and@inquirer/confirm
.The text was updated successfully, but these errors were encountered: