| /expo/tools/src/ |
| H A D | ExpoCLI.ts | 8 stdio?: 'inherit' | 'pipe' | 'ignore'; 22 stdio: options.stdio || 'inherit', 41 stdio: options.stdio || 'inherit',
|
| H A D | CocoaPods.ts | 45 stdio: StdioOptions; 53 options: PodInstallOptions = { noRepoUpdate: false, stdio: 'pipe' } 62 stdio: options.stdio ?? 'pipe',
|
| /expo/packages/create-expo/src/utils/ |
| H A D | git.ts | 9 await spawnAsync('git', ['rev-parse', '--is-inside-work-tree'], { stdio: 'ignore', cwd: root }); 23 await spawnAsync('git', ['init'], { stdio: 'ignore', cwd: root }); 24 await spawnAsync('git', ['add', '-A'], { stdio: 'ignore', cwd: root }); 28 stdio: 'ignore',
|
| /expo/packages/@expo/cli/src/start/platforms/android/__tests__/ |
| H A D | gradle-test.ts | 65 { cwd: '/android', stdio: 'inherit' } 77 { cwd: '/android', stdio: 'inherit' } 89 { cwd: '/android', stdio: 'inherit' } 102 expect(spawnAsync).toBeCalledWith('/gradlew', ['foo', 'bar'], { cwd: '/', stdio: 'inherit' }); 115 { cwd: '/', stdio: 'inherit' }
|
| /expo/packages/expo-yarn-workspaces/bin/ |
| H A D | expo-yarn-workspaces.js | 14 stdio: 'inherit', property 20 stdio: 'inherit', property 23 stdio: 'inherit', property
|
| /expo/packages/expo-test-runner/src/ |
| H A D | Utils.ts | 7 spawnSync('yarn', ['install', '--silent'], { stdio: 'inherit', cwd: path }); 16 await spawnAsync('adb', ['-s', 'emulator-5554', 'emu', 'kill'], { stdio: 'inherit' }); 27 await spawnAsync('xcrun', ['simctl', 'shutdown', 'all'], { stdio: 'inherit' });
|
| H A D | TemplateProject.ts | 37 stdio: 'inherit', 45 stdio: 'inherit', 99 stdio: 'inherit', 107 stdio: 'inherit', 119 stdio: 'inherit', 177 stdio: 'inherit', 197 stdio: 'inherit',
|
| /expo/packages/@expo/fingerprint/e2e/__tests__/ |
| H A D | managed-test.ts | 30 stdio: 'inherit', 42 stdio: 'ignore', 63 stdio: 'ignore', 95 stdio: 'ignore', 105 stdio: 'ignore', 142 stdio: 'inherit',
|
| H A D | bare-test.ts | 25 stdio: 'inherit', 37 stdio: 'ignore', 47 stdio: 'ignore',
|
| /expo/tools/src/client-build/ |
| H A D | IosClientBuilder.ts | 34 stdio: 'inherit', 37 stdio: 'inherit', 45 stdio: ['ignore', 'ignore', 'inherit'], // only stderr
|
| H A D | AndroidClientBuilder.ts | 36 stdio: 'inherit', 42 stdio: 'inherit',
|
| /expo/tools/src/commands/ |
| H A D | EasDispatch.ts | 152 { stdio: isDebug ? 'inherit' : 'pipe' } 157 { stdio: isDebug ? 'inherit' : 'pipe' } 182 stdio: isDebug ? 'inherit' : 'pipe', 200 { stdio: isDebug ? 'inherit' : 'pipe' } 244 stdio: 'inherit', 261 stdio: 'inherit', 283 { stdio: isDebug ? 'inherit' : 'pipe' } 319 stdio: 'inherit', 333 stdio: 'inherit', 355 stdio: 'inherit', [all …]
|
| /expo/packages/expo-test-runner/build/ |
| H A D | TemplateProject.js | 39 stdio: 'inherit', 46 stdio: 'inherit', 93 stdio: 'inherit', 97 stdio: 'inherit', 106 stdio: 'inherit', 145 stdio: 'inherit', 159 stdio: 'inherit',
|
| H A D | Utils.js | 11 … (0, child_process_1.spawnSync)('yarn', ['install', '--silent'], { stdio: 'inherit', cwd: path }); property 19 …await (0, spawn_async_1.default)('adb', ['-s', 'emulator-5554', 'emu', 'kill'], { stdio: 'inherit'… 31 … await (0, spawn_async_1.default)('xcrun', ['simctl', 'shutdown', 'all'], { stdio: 'inherit' });
|
| /expo/packages/expo-updates/e2e/setup/ |
| H A D | project.js | 77 stdio: 'ignore', property 131 stdio: 'inherit', property 138 stdio: 'inherit', property 400 { cwd: projectRoot, stdio: 'inherit' } property 438 stdio: 'ignore', property 461 stdio: 'inherit', property 478 stdio: 'inherit', property 496 stdio: 'ignore', property 515 stdio: 'ignore', property 532 stdio: 'inherit', property [all …]
|
| /expo/packages/@expo/cli/src/start/doctor/apple/ |
| H A D | XcodePrerequisite.ts | 32 const last = execSync('xcodebuild -version', { stdio: 'pipe' }) 64 execSync(`open ${link}`, { stdio: 'ignore' }); 77 return execSync(cmd, { stdio: 'pipe' }).toString().trim();
|
| /expo/tools/src/versioning/android/ |
| H A D | jarFiles.ts | 18 stdio: 'ignore', 25 stdio: 'ignore',
|
| /expo/packages/@expo/package-manager/build/ios/ |
| H A D | CocoaPodsPackageManager.js | 51 static async gemInstallCLIAsync(nonInteractive = false, spawnOptions = { stdio: 'inherit' }) { property 65 static async brewLinkCLIAsync(spawnOptions = { stdio: 'inherit' }) { property 68 static async brewInstallCLIAsync(spawnOptions = { stdio: 'inherit' }) { property 71 static async installCLIAsync({ nonInteractive = false, spawnOptions = { stdio: 'inherit' }, }) { property 73 spawnOptions = { stdio: 'inherit' }; property 123 static async isCLIInstalledAsync(spawnOptions = { stdio: 'inherit' }) { property 138 stdio: 'pipe', 291 stdio: 'pipe',
|
| /expo/packages/@expo/package-manager/src/ios/ |
| H A D | CocoaPodsPackageManager.ts | 56 spawnOptions: SpawnOptions = { stdio: 'inherit' } 76 static async brewLinkCLIAsync(spawnOptions: SpawnOptions = { stdio: 'inherit' }): Promise<void> { 81 spawnOptions: SpawnOptions = { stdio: 'inherit' } 88 spawnOptions = { stdio: 'inherit' }, 94 spawnOptions = { stdio: 'inherit' }; 162 spawnOptions: SpawnOptions = { stdio: 'inherit' } 178 stdio: 'pipe', 402 stdio: 'pipe',
|
| /expo/packages/create-expo/src/__tests__/ |
| H A D | resolvePackageManager.test.ts | 39 expect(execSync).toHaveBeenCalledWith('yarn --version', { stdio: 'ignore' }); 50 expect(execSync).toHaveBeenCalledWith('pnpm --version', { stdio: 'ignore' }); 65 expect(execSync).toHaveBeenCalledWith('bun --version', { stdio: 'ignore' });
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/scripts/template/ |
| H A D | initialize.js | 61 stdio: [process.stdin, process.stdout, process.stderr], property 76 stdio: [process.stdin, process.stdout, process.stderr], property 84 stdio: [process.stdin, process.stdout, process.stderr], property
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/scripts/monorepo/ |
| H A D | find-and-publish-all-bumped-packages.js | 39 {cwd: ROOT_LOCATION, shell: true, stdio: 'pipe', encoding: 'utf-8'}, property 70 {cwd: ROOT_LOCATION, shell: true, stdio: 'pipe', encoding: 'utf-8'}, property 109 stdio: 'pipe', property
|
| /expo/packages/create-expo-module/src/ |
| H A D | createExampleApp.ts | 49 stdio: 'ignore', 161 stdio: ['ignore', 'ignore', 'pipe'], 173 stdio: ['ignore', 'ignore', 'pipe'],
|
| H A D | packageManager.ts | 12 stdio: 'ignore',
|
| /expo/packages/@expo/cli/src/start/server/middleware/inspector/ |
| H A D | LaunchBrowserImplWindows.ts | 43 stdio: 'ignore', 93 stdio: 'ignore',
|