(type: BumpType)
| 294 | if (packages.has(scope)) return [scope]; |
| 295 | |
| 296 | return []; |
| 297 | } |
| 298 | |
| 299 | function bumpPriority(type: BumpType): number { |
| 300 | return type === 'major' ? 2 : type === 'minor' ? 1 : 0; |
| 301 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…