Dnit - A typescript (deno) based task runner
Dnit is a task runner based on typescript and Deno. It uses typescript variables for tasks and dependencies and is aimed at larger projects with tasks split across many files or shared between projects.
Installation:
Pre-Requisites
- Deno
- Requires deno v1.7.0 or greater
Install
It is recommended to use deno install
to install the tool, which provides a
convenient entrypoint script and aliases the permission flags.
deno install --allow-read --allow-write --allow-run --unstable -f --name dnit https://deno.land/x/dnit@dnit-v1.11.0/main.ts
Install from source checkout:
deno install --allow-read --allow-write --allow-run --unstable -f --name dnit ./main.ts
- Read, Write and Run permissions are required in order to operate on files and execute tasks.
- Unstable flag is currently required in order to support import maps and current std libraries.
Sample Usage
import {task, exec, file} from "https://deno.land/x/dnit@dnit-v1.11.0/dnit.ts";
/// A file to be tracked as a target and dependency:
export const msg = file({
path: './msg.txt'
});
/// A task definition. No side effect is incurred by creating a task.
export const helloWorld = task({
name: 'helloWorld',
description: "foo",
action: async () => { /// Actions are typescript async ()=> Promise<void> functions.
await Deno.run({
cmd: ["./writeMsg.sh"],
}).status();
},
deps: [
file({
path: "./writeMsg.sh"
})
],
targets: [
msg
]
});
export const goodbye = task({
name: 'goodbye',
action: async () => {
// use ordinary typescript idiomatically if several actions are required
const actions = [
async () => {
const txt = await Deno.readTextFile(msg.path);
console.log(txt);
},
async () => {
console.log("...");
},
];
for (const action of actions) {
await action();
}
},
deps: [msg] /// Dependency added as a typescript variable
/// Dependencies can be file dependency or task dependencies.
});
/// Register cmdline args & tasks with the tool.
exec(Deno.args, [helloWorld, goodbye]);
Sample Usage - CLI
- List tasks available:
dnit list
- Execute a task by name:
dnit helloWorld
- Verbose logging:
dnit list --verbose
In verbose mode the tool logs to stderr (fd #2)
Tasks and Files in Detail
Files are tracked by the exported
export function file(fileParams: FileParams) : TrackedFile
/** User params for a tracked file */
export type FileParams = {
/// File path
path: string;
/// Optional function for how to hash the file. Defaults to the sha1 hash of the file contents.
/// A file is out of date if the file timestamp and the hash are different than that in the task manifest
gethash?: GetFileHash;
};
TrackedFile
objects are used in tasks, either as targets or dependencies.
Tasks are created by the exported function task(taskParams: TaskParams): Task
/** User definition of a task */
export type TaskParams = {
/// Name: (string) - The key used to initiate a task
name: A.TaskName;
/// Description (string) - Freeform text description shown on help
description?: string;
/// Action executed on execution of the task (async or sync)
action: Action;
/// Optional list of explicit task dependencies
task_deps?: Task[];
/// Optional list of explicit file dependencies
file_deps?: TrackedFile[];
/// Optional list of task or file dependencies
deps?: (Task|TrackedFile)[];
/// Targets (files which will be produced by execution of this task)
targets?: TrackedFile[];
/// Custom up-to-date definition - Can be used to make a task *less* up to date. Eg; use uptodate: runAlways to run always on request regardless of dependencies being up to date.
uptodate?: IsUpToDate;
};
Tasks are passed to the exported
export async function exec(cliArgs: string[], tasks: Task[]) : Promise<void>
This exposes the tasks for execution by the CLI and executes them according to
the cliArgs
passed in.
exec(Deno.args, tasks);
Larger Scale use of tasks
This tool aims to support "large" projects with many tasks and even sharing task definitions across projects.
- Tasks and dependencies are typescript variables, can be imported/exported and used. This makes a large project of tasks and dependencies easy to navigate in a typescript IDE.
- User scripts are required to reside in a
dnit
directory. This provides a place to have a (deno) typescript tree for the task scripting, which encourages tasks to be separated into modules and generally organised as a typescript project tree. - User scripts can have an
import_map.json
file in order to import tasks and utils more flexibly. - The main
dnit
tool can be executed on its own (see section on Installation above)
Launching the tool
The dnit
tool searches for a user script to execute, in order to support the
abovementioned directory of sources.
- When
dnit
is the main it runs thelaunch
function to run the user's scripts. - It starts from the current working directory and runs
findUserSource
findUserSource
looks for subdirectorydnit
and looks for sourcesmain.ts
ordnit.ts
- It optionally looks for
import_map.json
or.import_map.json
to use as the import map. - If found then it changes working directory and executes the user script.
- If not found then it recurses into
findUserSource
in the parent directory.
- It optionally looks for
Eg: with a file layout:
repo
dnit
main.ts
import_map.json
src
project.ts
package.json
tsconfig.json
Executing dnit
anywhere in a subdirectory of repo
will execute the
main.ts
. Any relative paths used for dependencies and targets will resolve
relative to the repo
root, since it is where the subdirectory and file
dnit/main.ts
was found.
Note that the other directories can contain (non-deno) typescript project(s) and
having the (deno) typescript sources in a nominal dnit
tree helps prevent
confusion between the two.
References:
- https://pydoit.org/
- A task runner written in python.
- https://deno.land/x/drake/
- A deno task runner
- https://deno.land/x/dunner
- A deno task runner