| 28 | } |
| 29 | |
| 30 | export interface CascadeRule { |
| 31 | /** What bump level in the source triggers the cascade. Default: "patch" (any bump) */ |
| 32 | trigger?: BumpType; |
| 33 | /** What bump to apply to the target. Default: "match" (same as the source bump level) */ |
| 34 | bumpAs?: BumpType | 'match'; |
| 35 | } |
| 36 | |
| 37 | /** Input type for cascadeTo/cascadeFrom — array of names/globs, or object with per-entry rules */ |
| 38 | export type CascadeConfig = string[] | Record<string, CascadeRule>; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…