Skip to main content
Module

x/drake/examples/minimal-drakefile.ts

Drake is a make-like task runner for Deno.
Go to Latest
File
import { desc, run, task } from "https://deno.land/x/drake@v1.4.4/mod.ts";// import { desc, run, task } from "https://x.nest.land/drake@1.4.4/mod.ts";
desc("Minimal Drake task");task("hello", [], function () { console.log("Hello World!");});
run();