Skip to content

Instantly share code, notes, and snippets.

@UltiRequiem
Last active March 30, 2022 16:49
Show Gist options
  • Save UltiRequiem/831223ad27577d4551d842370b793dab to your computer and use it in GitHub Desktop.
Save UltiRequiem/831223ad27577d4551d842370b793dab to your computer and use it in GitHub Desktop.
Run a deno subcommand
export function denoRun(args: string[], options: Partial<Deno.RunOptions> = {}) {
return Deno.run({
cmd: ["deno", ...args],
stdout: "null",
stderr: "null",
...options,
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment