(dir: string)
| 62 | } |
| 63 | |
| 64 | function clean(dir: string) { |
| 65 | return fs.rm(dir, { |
| 66 | recursive: true, |
| 67 | force: true, |
| 68 | maxRetries: 5, |
| 69 | retryDelay: 100, |
| 70 | }) |
| 71 | } |
| 72 | |
| 73 | async function stop(dir: string) { |
| 74 | if (!(await exists(dir))) return |
no outgoing calls
no test coverage detected