(withNotification: boolean, title: string, body: string, details?: {error?: any})
| 122 | }; |
| 123 | |
| 124 | const logNotify = (withNotification: boolean, title: string, body: string, details?: {error?: any}) => { |
| 125 | console.log(title, body, details); |
| 126 | withNotification && notify(title, body, details); |
| 127 | }; |
| 128 | |
| 129 | export const installCLI = async (withNotification: boolean) => { |
| 130 | if (process.platform === 'win32') { |
no test coverage detected