Searched refs:dirPath (Results 1 – 7 of 7) sorted by relevance
| /expo/packages/create-expo/src/ |
| H A D | paths.ts | 14 let dirPath; 16 dirPath = path.join(home, '.expo-staging'); 18 dirPath = path.join(home, '.expo-local'); 20 dirPath = path.join(home, '.expo'); 22 return dirPath;
|
| /expo/packages/@expo/cli/src/start/project/ |
| H A D | dotExpo.ts | 48 const dirPath = getDotExpoProjectDirectory(projectRoot); constant 49 fs.mkdirSync(dirPath, { recursive: true }); 51 const readmeFilePath = path.resolve(dirPath, 'README.md'); 66 return dirPath;
|
| /expo/packages/@expo/fingerprint/src/hash/ |
| H A D | Hash.ts | 139 dirPath: string, 145 if (isIgnoredPath(dirPath, options.ignorePaths)) { 148 const dirents = (await fs.readdir(path.join(projectRoot, dirPath), { withFileTypes: true })).sort( 154 const filePath = path.join(dirPath, dirent.name); 157 const filePath = path.join(dirPath, dirent.name); 175 return { id: dirPath, hex };
|
| /expo/packages/@expo/fingerprint/build/hash/ |
| H A D | Hash.js | 110 async function createDirHashResultsAsync(dirPath, limiter, projectRoot, options, depth = 0) { argument 111 if ((0, Path_1.isIgnoredPath)(dirPath, options.ignorePaths)) { 114 …const dirents = (await promises_1.default.readdir(path_1.default.join(projectRoot, dirPath), { wit… 118 const filePath = path_1.default.join(dirPath, dirent.name); 122 const filePath = path_1.default.join(dirPath, dirent.name); 136 return { id: dirPath, hex };
|
| H A D | Hash.d.ts | 20 export declare function createDirHashResultsAsync(dirPath: string, limiter: pLimit.Limit, projectRo…
|
| /expo/packages/@expo/cli/src/run/ios/appleDevice/client/ |
| H A D | AFCClient.ts | 149 async function uploadDir(dirPath: string): Promise<void> { 151 for (const file of fs.readdirSync(dirPath)) { 152 const filePath = path.join(dirPath, file);
|
| /expo/tools/src/generate-module/ |
| H A D | configureModule.ts | 106 const removeUponEmptyOrOnlyEmptySubdirs = async (dirPath: string): Promise<boolean> => { 107 const contents = await fs.readdir(dirPath); 110 const filePath = path.join(dirPath, file); 117 await fs.remove(dirPath);
|