Home
last modified time | relevance | path

Searched refs:entryPoint (Results 1 – 15 of 15) sorted by relevance

/expo/packages/@expo/cli/src/start/server/middleware/__tests__/
H A DresolveEntryPoint-test.ts58 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 DenvironmentVariableSerializerPlugin.ts55 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 DwithExpoSerializers.ts70 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 DenvironmentVariableSerializerPlugin.js66 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 DenvironmentVariableSerializerPlugin.d.ts12 export declare function serverPreludeSerializerPlugin(entryPoint: string, preModules: readonly Modu…
13 export declare function environmentVariableSerializerPlugin(entryPoint: string, preModules: readonl…
H A DwithExpoSerializers.js117 const [entryPoint, preModules, graph, options] = props;
118 const jsCode = await defaultSerializer(entryPoint, preModules, graph, options);
H A DenvironmentVariableSerializerPlugin.js.map1entryPoint","preModules","graph","options","sourceUrl","prelude","find","module","path","output","…
H A DwithExpoSerializers.js.map1entryPoint","preModules","graph","options","jsCode","sourceUrl","isJscSafeUrl","toNormalUrl","url"…
/expo/tools/src/commands/
H A DGenerateDocsAPIData.ts20 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 DManifestMiddleware.ts59 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 DCHANGELOG.md47 - 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 DcreateBundles.ts36 entryPoint: getEntryWithServerRoot(projectRoot, projectConfig, platform),
H A Dfork-bundleAsync.ts26 entryPoint: string;
90 entryFile: bundle.entryPoint,
/expo/packages/@expo/cli/ts-declarations/metro/
H A Dindex.d.ts217 entryPoint: string,
/expo/docs/pages/get-started/
H A Dexpo-go.mdx43 "entryPoint": "index.js",