(cmd: string, cwd = root)
| 10 | const root = join(__dirname, '..') |
| 11 | |
| 12 | function exec(cmd: string, cwd = root): string { |
| 13 | return execSync(cmd, { cwd, encoding: 'utf-8', stdio: ['pipe', 'pipe', 'pipe'] }).trim() |
| 14 | } |
| 15 | |
| 16 | function execSafe(cmd: string, cwd = root): string | null { |
| 17 | try { |
no outgoing calls
no test coverage detected