-
Notifications
You must be signed in to change notification settings - Fork 1
fix(wizard): 修复工具菜单上下键需先按回车才能响应 #25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -45,17 +45,19 @@ | |
| "dist" | ||
| ], | ||
| "dependencies": { | ||
| "@inquirer/search": "^3.2.2", | ||
| "@inquirer/select": "^4.2.1", | ||
| "@inquirer/checkbox": "^5.1.5", | ||
| "@inquirer/confirm": "^6.0.13", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Low: |
||
| "@inquirer/input": "^5.0.13", | ||
| "@inquirer/password": "^5.0.13", | ||
| "@inquirer/search": "^4.1.9", | ||
| "@inquirer/select": "^5.1.5", | ||
| "chalk": "^5.3.0", | ||
| "commander": "^12.1.0", | ||
| "inquirer": "^9.2.12", | ||
| "js-yaml": "^4.1.0", | ||
| "ora": "^8.0.1", | ||
| "terminal-link": "^5.0.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@types/inquirer": "^9.0.7", | ||
| "@types/js-yaml": "^4.0.9", | ||
| "@types/node": "^20.11.0", | ||
| "typescript": "^5.3.3" | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
依赖项中新增了
@inquirer/confirm,但在代码中并未实际使用。promptHelper.confirm目前是基于@inquirer/select实现的列表式确认。如果确定不需要标准的 (y/N) 确认框,建议移除此依赖以保持 package 简洁。