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