(path: string, data: unknown)
| 40 | } |
| 41 | |
| 42 | async function writeJson(path: string, data: unknown): Promise<void> { |
| 43 | await mkdir(resolve(tmpDir, path, '..'), { recursive: true }); |
| 44 | await writeFile(resolve(tmpDir, path), `${JSON.stringify(data, null, 2)}\n`); |
| 45 | } |
| 46 | |
| 47 | /** Set up a single-package monorepo on main, then branch to "feature". */ |
| 48 | async function setupPkg(pkgJson: Record<string, unknown>): Promise<void> { |
no outgoing calls
no test coverage detected
searching dependent graphs…