Home
last modified time | relevance | path

Searched refs:isDevClient (Results 1 – 5 of 5) sorted by relevance

/expo/packages/@expo/cli/src/start/server/middleware/
H A DRuntimeRedirectMiddleware.ts39 const isDevClient = query['choice'] === 'expo-dev-client'; constant
43 const runtime = isDevClient ? 'custom' : 'expo';
/expo/packages/@expo/cli/src/start/
H A DresolveOptions.ts49 const isDevClient = isAutoDevClient || isUserDefinedDevClient; constant
53 devClient: isDevClient,
71 devClient: isDevClient,
/expo/packages/@expo/cli/src/start/server/
H A DBundlerDevServer.ts111 public isDevClient?: boolean
351 return this.isDevClient
398 const runtime = this.isTargetingNative() ? (this.isDevClient ? 'custom' : 'expo') : 'web';
409 const runtime = this.isTargetingNative() ? (this.isDevClient ? 'custom' : 'expo') : 'web';
430 !this.isDevClient &&
H A DDevServerManager.ts146 devServer.isDevClient = isUsingDevClient;
/expo/packages/@expo/cli/src/start/server/__tests__/
H A DBundlerDevServer-test.ts147 for (const isDevClient of [false, true]) { constant
149 it(`opens an ${platform} project in a ${runtime} (dev client: ${isDevClient})`, async () => {
151 devServer.isDevClient = isDevClient;
156 ).toHaveBeenNthCalledWith(1, { runtime: isDevClient ? 'custom' : 'expo' }, {});