Home
last modified time | relevance | path

Searched refs:createPendingSpawnAsync (Results 1 – 8 of 8) sorted by relevance

/expo/packages/@expo/package-manager/src/utils/__tests__/
H A Dspawn-test.ts4 import { createPendingSpawnAsync } from '../spawn';
10 describe(createPendingSpawnAsync, () => {
12 const pending = createPendingSpawnAsync(
21 const pending = createPendingSpawnAsync(
31 const pending = createPendingSpawnAsync(
42 const pending = createPendingSpawnAsync(
55 const pending = createPendingSpawnAsync(
/expo/packages/@expo/package-manager/src/node/
H A DYarnPackageManager.ts3 import { createPendingSpawnAsync } from '../utils/spawn';
31 return createPendingSpawnAsync(
42 return createPendingSpawnAsync(
53 return createPendingSpawnAsync(
64 return createPendingSpawnAsync(
H A DNpmPackageManager.ts7 import { createPendingSpawnAsync } from '../utils/spawn';
35 return createPendingSpawnAsync(
51 return createPendingSpawnAsync(
/expo/packages/@expo/package-manager/build/utils/
H A Dspawn.js6 exports.spawnSudoAsync = exports.createPendingSpawnAsync = void 0;
9 function createPendingSpawnAsync(actionAsync, spawnAsync) { function
31 exports.createPendingSpawnAsync = createPendingSpawnAsync;
H A Dspawn.d.ts15 export declare function createPendingSpawnAsync<V, T>(actionAsync: () => Promise<V>, spawnAsync: (r… function
/expo/packages/@expo/package-manager/build/node/
H A DYarnPackageManager.js29 …return (0, spawn_1.createPendingSpawnAsync)(() => this.withOfflineFlagAsync(['install']), (args) =…
35 …return (0, spawn_1.createPendingSpawnAsync)(() => this.withOfflineFlagAsync(['add', ...namesOrFlag…
41 …return (0, spawn_1.createPendingSpawnAsync)(() => this.withOfflineFlagAsync(['add', '--dev', ...na…
47 …return (0, spawn_1.createPendingSpawnAsync)(() => this.withOfflineFlagAsync(['global', 'add', ...n…
H A DNpmPackageManager.js34 …return (0, spawn_1.createPendingSpawnAsync)(() => this.updatePackageFileAsync(versioned, 'dependen…
43 …return (0, spawn_1.createPendingSpawnAsync)(() => this.updatePackageFileAsync(versioned, 'devDepen…
/expo/packages/@expo/package-manager/src/utils/
H A Dspawn.ts18 export function createPendingSpawnAsync<V, T>( function