Skip to main content

Execa

These are functions having to do with running commands in a Bash-like TypeScript script. They are based upon the $ function from "execa".

Variables

$

const $: ExecaScriptMethod<{
stderr: "inherit";
stdout: "inherit";
}>;

Defined in: functions/execa.ts:21

Run a command using the "execa" library.

This is a wrapper around the $ function from execa that sets stdout and stderr to "inherit", resulting in it being passed through to the console. (By default, the "$" function only inherits the stdin.) This emulates the default behavior of a Bash script.

See


$q

const $q: ExecaScriptMethod<{}> = dollarSignFunc;

Defined in: functions/execa.ts:49

Run a command using the "execa" library. The "q" is short for "quiet", meaning that the stdout will not be passed to the console.

This is a wrapper around the $ function from execa. (The quiet behavior is how the vanilla version of the $ function works, so this is just a wrapper with no additional modifications.)

Functions

$o()

function $o(templates, ...expressions): Promise<string>

Defined in: functions/execa.ts:32

Run a command using the "execa" library and return its stdout as a string. The stdin will not be returned.

This is a wrapper around the $ function from execa.

Parameters

ParameterType
templatesTemplateStringsArray
...expressionsreadonly TemplateExpression[]

Returns

Promise<string>