Home
last modified time | relevance | path

Searched refs:searchPaths (Results 1 – 25 of 25) sorted by relevance

/expo/packages/expo-modules-autolinking/src/autolinking/
H A DmergeLinkingOptions.ts37 finalOptions.searchPaths = await resolveSearchPathsAsync(finalOptions.searchPaths, process.cwd());
52 searchPaths: string[] | null,
55 return searchPaths && searchPaths.length > 0
56 ? searchPaths.map((searchPath) => path.resolve(cwd, searchPath))
H A DfindModules.ts24 const searchPaths = new Set( constant
26 ? [options.nativeModulesDir, ...options.searchPaths]
27 : options.searchPaths
31 for (const searchPath of searchPaths) {
59 if (isIsolatedModulesPath && !searchPaths.has(maybeIsolatedModulesPath)) {
60 searchPaths.add(maybeIsolatedModulesPath);
92 if (options.searchPaths.length <= 1) {
/expo/packages/expo-modules-autolinking/build/autolinking/
H A DmergeLinkingOptions.js30 … finalOptions.searchPaths = await resolveSearchPathsAsync(finalOptions.searchPaths, process.cwd());
39 async function resolveSearchPathsAsync(searchPaths, cwd) { argument
40 return searchPaths && searchPaths.length > 0
41 ? searchPaths.map((searchPath) => path_1.default.resolve(cwd, searchPath))
H A DfindModules.js24 …const searchPaths = new Set(options.nativeModulesDir && fs_extra_1.default.existsSync(options.nati…
25 ? [options.nativeModulesDir, ...options.searchPaths]
26 : options.searchPaths);
28 for (const searchPath of searchPaths) {
48 if (isIsolatedModulesPath && !searchPaths.has(maybeIsolatedModulesPath)) {
49 searchPaths.add(maybeIsolatedModulesPath);
74 if (options.searchPaths.length <= 1) {
H A DmergeLinkingOptions.d.ts17 export declare function resolveSearchPathsAsync(searchPaths: string[] | null, cwd: string): Promise…
H A DmergeLinkingOptions.js.map1searchPaths = await resolveSearchPathsAsync(finalOptions.searchPaths, process.cwd());\n\n finalOp…
H A DfindModules.js.map1searchPaths = new Set(\n options.nativeModulesDir && fs.existsSync(options.nativeModulesDir)\n …
/expo/packages/@expo/prebuild-config/build/
H A DimportExpoModulesAutolinking.d.ts5 searchPaths: string[];
10 resolveSearchPathsAsync(searchPaths: string[] | null, cwd: string): Promise<string[]>;
H A DgetAutolinkedPackages.js25 const searchPaths = await autolinking.resolveSearchPathsAsync(null, projectRoot);
28 searchPaths,
H A DimportExpoModulesAutolinking.js.map1searchPaths: string[];\n platform: 'ios' | 'android' | 'web';\n silent?: boolean;\n};\n\nexport …
H A DgetAutolinkedPackages.js.map1searchPaths","resolveSearchPathsAsync","platformPaths","Promise","all","map","platform","findModul…
/expo/packages/expo-modules-autolinking/src/autolinking/__tests__/
H A DfindModules-test.ts90 searchPaths: [searchPath],
109 searchPaths: [searchPath],
141 const searchPaths = [appNodeModules, workspaceNodeModules]; constant
148 searchPaths,
187 const searchPaths = [appNodeModules, workspaceNodeModules]; constant
203 searchPaths,
237 const searchPaths = [appNodeModules, workspaceNodeModules]; constant
250 searchPaths,
331 searchPaths: [modulesRoot],
422 searchPaths: [modulesRoot],
/expo/packages/@expo/prebuild-config/src/
H A DimportExpoModulesAutolinking.ts8 searchPaths: string[];
14 resolveSearchPathsAsync(searchPaths: string[] | null, cwd: string): Promise<string[]>;
H A DgetAutolinkedPackages.ts18 const searchPaths = await autolinking.resolveSearchPathsAsync(null, projectRoot); constant
24 searchPaths,
/expo/packages/expo-modules-autolinking/src/
H A Dindex.ts39 .action(async (searchPaths, providedOptions) => {
42 searchPaths,
H A Dtypes.ts7 searchPaths: string[]; property
/expo/packages/expo-modules-autolinking/src/platforms/__tests__/
H A Dios-test.ts111 { searchPaths: [expoRoot], platform: 'ios' }
145 { searchPaths: [expoRoot], platform: 'ios' }
/expo/packages/expo-modules-autolinking/build/
H A Dindex.js20 .action(async (searchPaths, providedOptions) => {
23 searchPaths,
H A Dtypes.d.ts4 searchPaths: string[]; property
H A Dindex.js.map1searchPaths, providedOptions) => {\n const options = await mergeLinkingOptionsAsync<OptionsTy…
H A Dtypes.js.map1 …eb';\n\nexport interface SearchOptions {\n // Available in the CLI\n searchPaths: string[];\n i…
/expo/packages/expo-modules-autolinking/scripts/android/
H A Dautolinking_implementation.gradle164 def searchPaths = options?.get("searchPaths", options?.get("modulesPaths", null))
165 if (searchPaths) {
166 args += searchPaths
/expo/template-files/ios/
H A DExpoKit-Podfile19 searchPaths: ['../../../packages'],
/expo/docs/pages/modules/
H A Dautolinking.mdx105 ### `searchPaths`
115 "searchPaths": ["../../packages"]
/expo/packages/expo-modules-autolinking/
H A DCHANGELOG.md134 - The `searchPaths` and `nativeModulesDir` options now support direct paths to specific module dire…