| 1 | import type { WorkspacePackage, DependentInfo, DepType } from '../types.ts'; |
| 2 | |
| 3 | export class DependencyGraph { |
| 4 | /** Map from package name → packages that depend on it */ |
| 5 | private dependents = new Map<string, DependentInfo[]>(); |
| 6 | /** Set of all internal package names */ |
nothing calls this directly
no outgoing calls
no test coverage detected