(helpText: string, quietOutput: boolean)
| 102 | ]; |
| 103 | |
| 104 | function showPromptHelp(helpText: string, quietOutput: boolean): void { |
| 105 | if (quietOutput) { |
| 106 | return; |
| 107 | } |
| 108 | |
| 109 | clack.log.message(helpText); |
| 110 | } |
| 111 | |
| 112 | async function withSpinner<T>(opts: { |
| 113 | isTTY: boolean; |
no outgoing calls
no test coverage detected