| /expo/packages/@expo/cli/src/start/server/middleware/__tests__/ |
| H A D | resolveEntryPoint-test.ts | 58 entryPoint: 'main.js', 92 const entryPoint = resolveEntryPoint('/exists-no-platform'); constant 93 expect(entryPoint).toBe('index.js'); 98 const entryPoint = resolveEntryPoint('/exists-no-platform-no-main'); constant 99 expect(entryPoint).toBe('index.js'); 103 const entryPoint = resolveEntryPoint('/exists-android'); constant 104 expect(entryPoint).toBe('index.android.js'); 108 const entryPoint = resolveEntryPoint('/exists-ios'); constant 109 expect(entryPoint).toBe('index.ios.js'); 118 const entryPoint = resolveEntryPoint('/expo-app-entry'); constant [all …]
|
| /expo/packages/@expo/metro-config/src/serializer/ |
| H A D | environmentVariableSerializerPlugin.ts | 55 entryPoint: string, 72 return [entryPoint, preModules, graph, options]; 76 entryPoint: string, 84 return [entryPoint, preModules, graph, options]; 105 entryPoint, 132 return [entryPoint, preModules, graph, options];
|
| H A D | withExpoSerializers.ts | 70 const [entryPoint, preModules, graph, options] = props; constant 72 const jsCode = await defaultSerializer(entryPoint, preModules, graph, options);
|
| /expo/packages/@expo/metro-config/build/serializer/ |
| H A D | environmentVariableSerializerPlugin.js | 66 function serverPreludeSerializerPlugin(entryPoint, preModules, graph, options) { argument 74 return [entryPoint, preModules, graph, options]; 76 function environmentVariableSerializerPlugin(entryPoint, preModules, graph, options) { argument 80 return [entryPoint, preModules, graph, options]; 95 return [entryPoint, [ 116 return [entryPoint, preModules, graph, options];
|
| H A D | environmentVariableSerializerPlugin.d.ts | 12 export declare function serverPreludeSerializerPlugin(entryPoint: string, preModules: readonly Modu… 13 export declare function environmentVariableSerializerPlugin(entryPoint: string, preModules: readonl…
|
| H A D | withExpoSerializers.js | 117 const [entryPoint, preModules, graph, options] = props; 118 const jsCode = await defaultSerializer(entryPoint, preModules, graph, options);
|
| H A D | environmentVariableSerializerPlugin.js.map | 1 …entryPoint","preModules","graph","options","sourceUrl","prelude","find","module","path","output","…
|
| H A D | withExpoSerializers.js.map | 1 …entryPoint","preModules","graph","options","jsCode","sourceUrl","isJscSafeUrl","toNormalUrl","url"…
|
| /expo/tools/src/commands/ |
| H A D | GenerateDocsAPIData.ts | 20 type CommandAdditionalParams = [entryPoint: EntryPoint, packageName?: string]; 99 entryPoint: EntryPoint = 'index.ts', 129 const entryPoints = Array.isArray(entryPoint) 130 ? entryPoint.map((entry) => path.join(entriesPath, entry)) 131 : [path.join(entriesPath, entryPoint)]; 152 if (Array.isArray(entryPoint)) { 153 const filterEntries = entryPoint.map((entry) => entry.substring(0, entry.lastIndexOf('.')));
|
| /expo/packages/@expo/cli/src/start/server/middleware/ |
| H A D | ManifestMiddleware.ts | 59 const entryPoint = getEntryWithServerRoot(projectRoot, projectConfig, platform); constant 61 debug(`Resolved entry point: ${entryPoint} (project root: ${projectRoot})`); 63 return stripExtension(entryPoint, 'js'); 221 let entryPoint = getEntryWithServerRoot(this.projectRoot, projectConfig, platform); 223 debug(`Resolved entry point: ${entryPoint} (project root: ${this.projectRoot})`); 232 entryPoint = 'index.js'; 235 return stripExtension(entryPoint, 'js');
|
| /expo/packages/@expo/config/ |
| H A D | CHANGELOG.md | 47 - Drop `entryPoint` usage. ([#22416](https://github.com/expo/expo/pull/22416) by [@EvanBacon](https… 65 - Assert that use of `expo.entryPoint` is not supported (never has been outside of classic builds).…
|
| /expo/packages/@expo/cli/src/export/ |
| H A D | createBundles.ts | 36 entryPoint: getEntryWithServerRoot(projectRoot, projectConfig, platform),
|
| H A D | fork-bundleAsync.ts | 26 entryPoint: string; 90 entryFile: bundle.entryPoint,
|
| /expo/packages/@expo/cli/ts-declarations/metro/ |
| H A D | index.d.ts | 217 entryPoint: string,
|
| /expo/docs/pages/get-started/ |
| H A D | expo-go.mdx | 43 "entryPoint": "index.js",
|