Home
last modified time | relevance | path

Searched refs:devClient (Results 1 – 11 of 11) sorted by relevance

/expo/packages/@expo/cli/src/start/__tests__/
H A DresolveOptions-test.ts39 ).devClient
43 expect((await resolveOptionsAsync('/noop', {})).devClient).toBe(false);
46 expect((await resolveOptionsAsync('/noop', { '--dev-client': true })).devClient).toBe(true);
50 expect((await resolveOptionsAsync('/noop', {})).devClient).toBe(true);
54 expect((await resolveOptionsAsync('/noop', { '--go': true })).devClient).toBe(false);
105 resolvePortsAsync('/noop', { port: 1234, devClient: true }, { webOnly: false })
117 resolvePortsAsync('/noop', { devClient: true }, { webOnly: false })
128 resolvePortsAsync('/noop', { devClient: true }, { webOnly: true })
/expo/packages/@expo/cli/src/start/
H A DresolveOptions.ts20 devClient: boolean;
53 devClient: isDevClient,
71 devClient: isDevClient,
80 options: { scheme?: string; devClient?: boolean }
98 } else if (options.devClient || isDevClientPackageInstalled) {
H A DstartAsync.ts28 devClient: options.devClient,
102 if (!settings.webOnly && !options.devClient) {
108 if (options.devClient) {
/expo/packages/@expo/cli/src/start/interface/
H A DstartInterface.ts47 devClient: devServerManager.options.devClient, constant
142 usageOptions.devClient = devServerManager.options.devClient;
H A DcommandsTable.ts12 devClient?: boolean;
44 const switchMsg = `switch to ${options.devClient === false ? 'development build' : 'Expo Go'}`;
45 const target = options.devClient === false ? `Expo Go` : 'development build';
H A DinteractiveActions.ts46 if (options.devClient === false) {
/expo/packages/@expo/cli/src/run/__tests__/
H A DstartBundler-test.ts43 devClient: true,
63 devClient: true,
/expo/packages/@expo/cli/src/start/server/
H A DDevServerManager.ts134 async toggleRuntimeMode(isUsingDevClient: boolean = !this.options.devClient): Promise<boolean> {
139 devClient: isUsingDevClient,
144 this.options.devClient = isUsingDevClient;
172 !!options?.devClient
H A DBundlerDevServer.ts53 devClient?: boolean; property
/expo/packages/@expo/cli/src/run/
H A DstartBundler.ts24 devClient: true, constant
/expo/packages/@expo/cli/src/start/server/metro/
H A DMetroBundlerDevServer.ts77 (options.devClient