| 20 | export type HookContext = 'pre-commit' | 'pre-push'; |
| 21 | |
| 22 | interface CheckOptions { |
| 23 | strict?: boolean; |
| 24 | noFail?: boolean; |
| 25 | hook?: HookContext; |
| 26 | /** Branch to compare against (default: baseBranch). Use for feature branches targeting a channel branch. */ |
| 27 | base?: string; |
| 28 | } |
| 29 | |
| 30 | /** |
| 31 | * Local check: detect which packages have changed on this branch |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…