| 339 | } |
| 340 | |
| 341 | export type PackageManager = 'npm' | 'pnpm' | 'yarn' | 'bun'; |
| 342 | |
| 343 | // ---- Dependency graph ---- |
| 344 | |
| 345 | export interface DependentInfo { |
| 346 | /** The package that depends on the source */ |
| 347 | name: string; |
| 348 | depType: DepType; |
| 349 | versionRange: string; |
| 350 | } |
| 351 | |
| 352 | // ---- Release plan ---- |
| 353 | |
| 354 | export interface PlannedRelease { |
| 355 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…