Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/drake/mod.ts>ShOpts

Drake is a make-like task runner for Deno.
Latest
interface ShOpts
import { type ShOpts } from "https://deno.land/x/drake@v1.7.0/mod.ts";

sh API options.

Properties

optional
cwd: string

Working directory.

optional
env: { [key: string]: string; }

Map containing additional shell environment variables.

optional
stdout: "inherit" | "piped" | "null"
optional
stderr: "inherit" | "piped" | "null"