Interface Context

Task Context definition.

interface Context {
    args: string[];
    cancellation: AbortSignal;
    cwd: string;
    env: Dictionary<null | string>;
    level: LogLevel;
    prefix: boolean | PrefixPolicy;
    route: string[];
    stdio: Stdio;
}

Hierarchy (view full)

Properties

args: string[]

A task's arguments. Used for spawned processes.

cancellation: AbortSignal

An AbortSignal for task cancellation. Tasks should cancel when it emits.

cwd: string

A task's working directory. Used as root for paths in file operations and for spawned processes.

env: Dictionary<null | string>

A task's environment variables. Used for spawned processes.

level: LogLevel

A task's log level.

prefix: boolean | PrefixPolicy

Whether a task will prefix all lines of its stdout and stderr writes with the stringification of its route.

route: string[]

A task's route.

stdio: Stdio

A task's stdin, stdout and stderr.