Skip to main content
Module

x/drake/mod.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/mod.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[]