(cwd: string)
| 57 | } |
| 58 | |
| 59 | export async function readRootPackageJson(cwd: string): Promise<PackageJson> { |
| 60 | return await readJsonFile<PackageJson>(path.join(cwd, 'package.json')); |
| 61 | } |
| 62 | |
| 63 | export async function readPnpmWorkspacePatterns( |
| 64 | cwd: string, |
no outgoing calls
no test coverage detected