carloscuesta / gitmoji-cli

A gitmoji interactive cli tool for using emojis on commits. 💻
https://www.npmjs.com/package/gitmoji-cli
MIT License
4.59k stars 206 forks source link

📌 Limit inquirer to patch versions #1322

Closed segersniels closed 2 months ago

segersniels commented 2 months ago

Description

Seems like inquirer unified their monorepo setup and changed from a lib directory to src which is causing inquirer-autocomplete-prompt to fail since it has a peer dependency on an older version of inquirer. Package managers are bumping the version to 9.3.x due to us having ^9.2.23.

So we limit package managers to not update to minor version 9.3.x for now.

Issue: https://github.com/carloscuesta/gitmoji-cli/issues/1321

Tests