Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Command

import type { Command } from "https://googleapis.deno.dev/v1/containeranalysis:v1.ts";

Command describes a step performed as part of the build pipeline.

interface Command {
args?: string[];
dir?: string;
env?: string[];
id?: string;
name?: string;
waitFor?: string[];
}

§Properties

§
args?: string[]
[src]

Command-line arguments used when executing this command.

§
dir?: string
[src]

Working directory (relative to project source root) used when running this command.

§
env?: string[]
[src]

Environment variables set before running this command.

§
id?: string
[src]

Optional unique identifier for this command, used in wait_for to reference this command as a dependency.

§
name?: string
[src]

Required. Name of the command, as presented on the command line, or if the command is packaged as a Docker container, as presented to docker pull.

§
waitFor?: string[]
[src]

The ID(s) of the command(s) that this command depends on.