Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/drake/lib/utils.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/lib/utils.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"