()
| 7 | } |
| 8 | |
| 9 | const ballmerSpinner = () => ({ |
| 10 | start: (msg?: string): void => { |
| 11 | log.step(msg ?? ""); |
| 12 | }, |
| 13 | stop: (msg?: string, code?: number): void => { |
| 14 | log.message(msg ?? ""); |
| 15 | }, |
| 16 | message: (msg?: string): void => { |
| 17 | log.message(msg ?? ""); |
| 18 | }, |
| 19 | }); |
| 20 | |
| 21 | // This will become unecessary with the next clack release, the bug was fixed here: |
| 22 | // https://github.com/natemoo-re/clack/pull/182 |
no outgoing calls
no test coverage detected
searching dependent graphs…