Skip to main content
Module

x/dunner/mod.ts>ExecResult

A flexible declarative task runner inspired by make/jake
Latest
interface ExecResult
import { type ExecResult } from "https://deno.land/x/dunner@v0.1.0/mod.ts";

The result of the command.

If stdout or stderr were set to piped, then these are set here.

Properties

stdout: T["stdout"] extends "piped" ? string : undefined
stderr: T["stderr"] extends "piped" ? string : undefined