| 25 | * Base context used in every semantic release step. |
| 26 | */ |
| 27 | export interface BaseContext { |
| 28 | /** |
| 29 | * stdout for semantic-release process |
| 30 | */ |
| 31 | stdout: NodeJS.WriteStream; |
| 32 | |
| 33 | /** |
| 34 | * stderr for semantic-release process |
| 35 | */ |
| 36 | stderr: NodeJS.WriteStream; |
| 37 | |
| 38 | /** |
| 39 | * Signale console loger instance. |
| 40 | * |
| 41 | * Has error, log, warn and success methods. |
| 42 | */ |
| 43 | logger: Signale<"error" | "log" | "success" | "warn">; |
| 44 | |
| 45 | /** |
| 46 | * Semantic release configuration |
| 47 | */ |
| 48 | options: Options; |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Context used for the verify conditions step. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…