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://raw.github.com/srackham/drake/master/mod.ts";
desc("Minimal Drake task");task("hello", [], function () { console.log("Hello World!");});
run();