Home
last modified time | relevance | path

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

/expo/packages/@expo/cli/src/run/ios/__tests__/
H A DrunIosAsync-test.ts6 import { buildAsync } from '../XcodeBuild';
51 buildAsync: jest.fn(async () => '...'),
88 expect(buildAsync).toBeCalledWith({
124 expect(buildAsync).toBeCalledWith({
/expo/tools/src/client-build/
H A Dtypes.ts14 buildAsync: (flavor?: ClientBuildFlavor) => Promise<void>; property
H A DAndroidClientBuilder.ts34 async buildAsync(flavor: ClientBuildFlavor = ClientBuildFlavor.VERSIONED) { method in AndroidClientBuilder
H A DIosClientBuilder.ts32 async buildAsync(flavor: ClientBuildFlavor = ClientBuildFlavor.VERSIONED) { method in IosClientBuilder
/expo/packages/@expo/cli/src/run/ios/
H A DrunIosAsync.ts33 const buildOutput = await XcodeBuild.buildAsync(props);
H A DXcodeBuild.ts270 export async function buildAsync(props: BuildProps): Promise<string> { function
/expo/packages/@expo/cli/src/export/
H A Dfork-bundleAsync.ts83 const buildAsync = async (bundle: BundleOptions): Promise<BundleOutput> => { constant
164 const intermediateOutputs = await Promise.all(bundles.map((bundle) => buildAsync(bundle)));
/expo/tools/src/commands/
H A DClientBuild.ts136 await builder.buildAsync(flavor);