| 7 | import {unique} from './util'; |
| 8 | |
| 9 | export interface PackageManagerInfo { |
| 10 | name: string; |
| 11 | lockFilePatterns: Array<string>; |
| 12 | getCacheFolderPath: (projectDir?: string) => Promise<string>; |
| 13 | } |
| 14 | |
| 15 | interface SupportedPackageManagers { |
| 16 | npm: PackageManagerInfo; |
nothing calls this directly
no outgoing calls
no test coverage detected