Skip to content

Commit 3758f00

Browse files
committed
fix(cli): update stdio options to capture error output
1 parent 9a025b2 commit 3758f00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-native-builder-bob/src/utils/runRNCCli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { spawn } from './spawn';
77
export async function runRNCCli(
88
args: string[],
99
options: SpawnOptions = {
10-
stdio: 'ignore',
10+
stdio: ['ignore', 'ignore', 'pipe'],
1111
}
1212
) {
1313
return await spawn('npx', ['@react-native-community/cli', ...args], options);

0 commit comments

Comments
 (0)