Skip to main content
Module

x/drake/lib.ts

Drake is a make-like task runner for Deno.
Go to Latest
File
/* APIs that can be used in non-Drake modules. */export { env } from "./lib/env.ts";export { abort, debug, DrakeError, glob, log, makeDir, quote, readFile, remove, sh, shCapture, stat, updateFile, writeFile,} from "./lib/utils.ts";export type { ShCaptureOpts, ShOpts, ShOutput } from "./lib/utils.ts";