| 6 | const PACKAGES_DIR = path.resolve(BASE_DIR, 'packages'); |
| 7 | |
| 8 | export interface Package { |
| 9 | path: string; |
| 10 | name: string; |
| 11 | manifest: Record<string, unknown>; // the parsed package.json |
| 12 | } |
| 13 | |
| 14 | export const getPackageInfo = async (): Promise<Package[]> => { |
| 15 | const packages: Package[] = []; |
nothing calls this directly
no outgoing calls
no test coverage detected