()
| 57 | } |
| 58 | |
| 59 | function readPkg(): Record<string, unknown> { |
| 60 | return JSON.parse(readFileSync(PKG_PATH, 'utf-8')); |
| 61 | } |
| 62 | |
| 63 | function exec(cmd: string, opts?: { cwd?: string }): { ok: boolean; stdout: string; stderr: string } { |
| 64 | try { |
no outgoing calls
no test coverage detected
searching dependent graphs…