DefinitelyTyped/types/undertaker/undertaker-tests.ts
2019-04-05 17:46:02 -04:00

61 lines
1.5 KiB
TypeScript

/// <reference types="node" />
import * as fs from "fs";
import Undertaker = require("undertaker");
import Registry = require("undertaker-registry");
const taker = new Undertaker();
taker.task("task1", (cb: () => void) => {
// do things
cb(); // when everything is done
});
taker.task("task2", () => {
return fs.createReadStream("./myFile.js")
.pipe(fs.createWriteStream("./myFile.copy.js"));
});
taker.task("task3", () => {
return new Promise((resolve, reject) => {
// do things
resolve(); // when everything is done
});
});
const task4: Undertaker.TaskFunction = () => Promise.resolve();
task4.displayName = "task4";
task4.description = "The fourth task";
task4.flags = {
"--foo": "bar",
};
taker.task(task4);
const {
displayName,
description,
flags,
} = taker.task("task4").unwrap();
taker.task("combined", taker.series("task1", "task2"));
taker.task("all", taker.parallel("combined", "task3"));
taker.task("all-parallel-array", taker.parallel(["combined", "task3"]));
taker.task("all-series-array", taker.series(["combined", "task3"]));
const registry = new Registry();
const CommonRegistry = (options: { buildDir: string }): Registry => {
return registry;
};
const taker2 = new Undertaker(CommonRegistry({ buildDir: "/dist" }));
taker2.task("build", taker2.series("clean", (cb: () => void) => {
// do things
cb();
}));
taker2.addListener("event", () => {
// Checking for extended EventEmitter
});