@storm-software/git-tools
Version:
Tools for managing Git repositories within a Nx workspace.
29 lines (26 loc) • 615 B
JavaScript
import {
__name,
init_esm_shims
} from "./chunk-AX5TUBFG.js";
// ../config-tools/src/utilities/run.ts
init_esm_shims();
import { exec, execSync } from "node:child_process";
var LARGE_BUFFER = 1024 * 1e6;
var run = /* @__PURE__ */ __name((config, command, cwd = config.workspaceRoot ?? process.cwd(), stdio = "inherit", env = process.env) => {
return execSync(command, {
cwd,
env: {
...process.env,
...env,
CLICOLOR: "true",
FORCE_COLOR: "true"
},
windowsHide: true,
stdio,
maxBuffer: LARGE_BUFFER,
killSignal: "SIGTERM"
});
}, "run");
export {
run
};