Home
last modified time | relevance | path

Searched refs:dirPath (Results 1 – 7 of 7) sorted by relevance

/expo/packages/create-expo/src/
H A Dpaths.ts14 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 DdotExpo.ts48 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 DHash.ts139 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 DHash.js110 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 DHash.d.ts20 export declare function createDirHashResultsAsync(dirPath: string, limiter: pLimit.Limit, projectRo…
/expo/packages/@expo/cli/src/run/ios/appleDevice/client/
H A DAFCClient.ts149 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 DconfigureModule.ts106 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);