| 21 | // ---- Dependency bump rules ---- |
| 22 | |
| 23 | export interface DependencyBumpRule { |
| 24 | /** What bump level in the dependency triggers propagation */ |
| 25 | trigger: BumpType; |
| 26 | /** What bump to apply to the dependent */ |
| 27 | bumpAs: BumpType | 'match'; |
| 28 | } |
| 29 | |
| 30 | export interface CascadeRule { |
| 31 | /** What bump level in the source triggers the cascade. Default: "patch" (any bump) */ |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…