UNPKG

@altano/repository-tools

Version:

Misc tools for dealing with repositories of multiple version control systems (git, svn, etc)

10 lines (8 loc) 319 B
import { exec, execFile, execFileSync, execSync } from "child_process"; import { promisify } from "node:util"; //#region src/exec.ts const execAsync = promisify(exec); const execFileAsync = promisify(execFile); //#endregion export { execAsync, execFileAsync, execFileSync, execSync }; //# sourceMappingURL=exec.js.map