Workstation API - v0.6.2
    Preparing search index...

    Interface CommandSpec

    Run a program directly, without an implicit shell. Custom builds expand {source}, {output}, and {target}.

    interface CommandSpec {
        args?: readonly string[];
        command: string;
        cwd?: string;
        environment?: Readonly<Record<string, string>>;
    }

    Hierarchy (View Summary)

    Index
    args?: readonly string[]
    command: string
    cwd?: string
    environment?: Readonly<Record<string, string>>