Searched refs:spawnJSONCommandAsync (Results 1 – 4 of 4) sorted by relevance
| /expo/tools/src/ |
| H A D | Npm.ts | 4 import { spawnAsync, spawnJSONCommandAsync, SpawnOptions } from './Utils'; 50 return await spawnJSONCommandAsync('npm', [ 65 return await spawnJSONCommandAsync('npm', ['profile', 'get', '--json']); 133 return await spawnJSONCommandAsync('npm', ['team', 'ls', teamName, '--json']);
|
| H A D | CocoaPods.ts | 3 import { spawnAsync, spawnJSONCommandAsync } from './Utils'; 33 return await spawnJSONCommandAsync('pod', ['ipc', 'spec', podspecPath]);
|
| H A D | Workspace.ts | 6 import { spawnAsync, spawnJSONCommandAsync } from './Utils'; 28 const info = await spawnJSONCommandAsync<{ data: string }>('yarn', [
|
| H A D | Utils.ts | 29 export async function spawnJSONCommandAsync<T = object>( function
|