Check if a bump level meets the trigger threshold
(bumpType: BumpType, trigger: BumpType)
| 456 | |
| 457 | /** Check if a bump level meets the trigger threshold */ |
| 458 | function shouldTrigger(bumpType: BumpType, trigger: BumpType): boolean { |
| 459 | return bumpLevel(bumpType) >= bumpLevel(trigger); |
| 460 | } |
| 461 | |
| 462 | /** |
| 463 | * Consumer-side cascade rules for a package: explicit `cascadeFrom` entries, plus the |
no test coverage detected
searching dependent graphs…