(dir?: string)
| 47 | let lastBlockedBy: string | undefined |
| 48 | |
| 49 | function getLockPath(dir?: string): string { |
| 50 | return join(dir ?? getProjectRoot(), LOCK_FILE_REL) |
| 51 | } |
| 52 | |
| 53 | async function readLock(dir?: string): Promise<SchedulerLock | undefined> { |
| 54 | let raw: string |
no test coverage detected