(config: BumpyConfig)
| 65 | |
| 66 | /** Names of all configured channels (used as `.bumpy/` subdirectory names) */ |
| 67 | export function channelNames(config: BumpyConfig): string[] { |
| 68 | return Object.keys(config.channels || {}); |
| 69 | } |
| 70 | |
| 71 | /** Absolute path of a channel's shipped-bump-files directory */ |
| 72 | export function getChannelDir(rootDir: string, channelName: string): string { |
no outgoing calls
no test coverage detected
searching dependent graphs…