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
Fix pre-commit hook hang issue in config command by using dynamic import for @inquirer/prompts
6
+
7
+
The config command was causing pre-commit hooks to hang indefinitely due to stdin event listeners being registered at module load time. This fix converts the static import to a dynamic import that only loads inquirer when the `config reset` command is actually used interactively.
8
+
9
+
Also adds ESLint with a rule to prevent static @inquirer imports, avoiding future regressions.
0 commit comments