(name: SupportedPackageManagers)
| 143 | } |
| 144 | |
| 145 | getBinariesFor(name: SupportedPackageManagers) { |
| 146 | const binNames = new Set<string>(); |
| 147 | |
| 148 | for (const rangeDefinition of Object.values(this.config.definitions[name]!.ranges)) { |
| 149 | const bins = Array.isArray(rangeDefinition.bin) |
| 150 | ? rangeDefinition.bin |
| 151 | : Object.keys(rangeDefinition.bin); |
| 152 | |
| 153 | for (const name of bins) { |
| 154 | binNames.add(name); |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | return binNames; |
| 159 | } |
| 160 | |
| 161 | async getDefaultDescriptors() { |
| 162 | const locators: Array<Descriptor> = []; |
no outgoing calls
no test coverage detected