| 5 | declare module "semantic-release" { |
| 6 | import { Signale } from "signale"; |
| 7 | export interface EnvCi { |
| 8 | /** |
| 9 | * Boolean, true if the environment is a CI environment |
| 10 | */ |
| 11 | isCi: boolean; |
| 12 | |
| 13 | /** |
| 14 | * Commit hash |
| 15 | */ |
| 16 | commit: string; |
| 17 | |
| 18 | /** |
| 19 | * Current branch name |
| 20 | */ |
| 21 | branch: string; |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * Base context used in every semantic release step. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…