import { execSync as nodeExecSync } from 'node:child_process' export const execSync = (cmd: string, options?: Parameters[1]) => { return nodeExecSync(cmd, { stdio: 'inherit', ...options, }) }