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

x/drake/lib/registry.ts>run

Drake is a make-like task runner for Deno.
Latest
function run
import { run } from "https://deno.land/x/drake@v1.7.0/lib/registry.ts";

Execute named tasks along with their prerequisite tasks (direct and indirect). If no task names are specified then the command-line tasks are run. If no command-line tasks were specified the default task (set in env("--default-task")) is run.

Task execution is ordered such that prerequisite tasks are executed prior to their parent task. The same task is never run twice.

Parameters

...taskNames: string[]