task-keeper 0.31.0

Task keeper to manage tasks from different task runners
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
let { task, desc } = require("jake");

desc("This is the hello task.");
task("hello", function () {
    console.log("hello world!");
});

desc("This is the default task.");
task("default", function () {
    console.log("This is the default task.");
    console.log("Jake will run this task if you run `jake` with no task specified.");
});

desc("This is some other task. It depends on the default task");
task("otherTask", ["default"], function () {
    console.log("Some other task");
});