(command: string)
| 17 | * Log when starting to execute a command |
| 18 | */ |
| 19 | export function logCommand(command: string): void { |
| 20 | p.log.step(`${styleText('dim', '$ ')}${styleText('cyan', command)}`) |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * Log successful command completion |
no outgoing calls
no test coverage detected