MCPcopy
hub / github.com/semantic-release/semantic-release / BaseContext

Interface BaseContext

index.d.ts:27–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…