(target, label)
| 25 | function run(command, args) { |
| 26 | const result = spawnSync(command, args, { |
| 27 | cwd: monorepoRoot, |
| 28 | stdio: 'inherit', |
| 29 | shell: process.platform === 'win32', |
| 30 | env: process.env, |
| 31 | }); |
| 32 | |
| 33 | if (result.status !== 0) { |
| 34 | process.exit(result.status ?? 1); |