(cmd)
| 10 | const extraArgs = process.argv.slice(2).join(" "); |
| 11 | |
| 12 | function runCommand(cmd) { |
| 13 | try { |
| 14 | execSync(cmd, { stdio: "inherit" }); |
| 15 | } catch (err) { |
| 16 | process.exit(1); |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | function checkCommandExists(cmd, installHint) { |
| 21 | try { |
no outgoing calls
no test coverage detected