| 8 | const LEVELS: BumpLevel[] = ['skip', 'none', 'patch', 'minor', 'major']; |
| 9 | |
| 10 | export interface BumpSelectItem { |
| 11 | name: string; |
| 12 | version: string; |
| 13 | changed: boolean; |
| 14 | /** Pre-set level (e.g. from an existing bump file on the branch) */ |
| 15 | initialLevel?: BumpLevel; |
| 16 | } |
| 17 | |
| 18 | export interface BumpSelectResult { |
| 19 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…