UNPKG

@storm-software/git-tools

Version:

Tools for managing Git repositories within a Nx workspace.

26 lines (23 loc) 632 B
'use strict'; var child_process = require('child_process'); // ../config-tools/src/utilities/run.ts var LARGE_BUFFER = 1024 * 1e6; var run = (config, command, cwd = config.workspaceRoot ?? process.cwd(), stdio = "inherit", env = process.env) => { return child_process.execSync(command, { cwd, env: { ...process.env, ...env, CLICOLOR: "true", FORCE_COLOR: "true" }, windowsHide: true, stdio, maxBuffer: LARGE_BUFFER, killSignal: "SIGTERM", encoding: "utf8" }); }; exports.run = run; //# sourceMappingURL=chunk-FH5OSXAJ.cjs.map //# sourceMappingURL=chunk-FH5OSXAJ.cjs.map