Home
last modified time | relevance | path

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

123

/expo/tools/src/
H A DFormatter.ts69 return `${link(fileLog.relativePath, uri)} ${gray(`(${fileLog.status})`)}`;
89 const relativePath = path.relative(process.cwd(), p1); constant
92 return cyan.bold(relativePath + p2) + ' ' + logColor(p3 + p4);
95 const relativePath = path.relative(process.cwd(), p2); constant
96 return gray.italic(p1 + relativePath + p3);
H A DGit.ts35 relativePath: string;
293 const [status, relativePath, relativePathAfterRename] = line.split(/\t+/g); constant
294 const newPath = relativePathAfterRename ?? relativePath; constant
297 relativePath: newPath,
/expo/packages/expo-modules-autolinking/src/autolinking/
H A DverifySearchResults.ts11 const relativePath: (pkg: PackageRevision) => string = (pkg) => path.relative(cwd, pkg.path); constant
19 console.log(` - ${chalk.magenta(relativePath(revision))} (${chalk.cyan(revision.version)})`);
22 console.log(` - ${chalk.gray(relativePath(duplicate))} (${chalk.gray(duplicate.version)})`);
/expo/packages/@expo/package-manager/src/utils/
H A DnodeWorkspaces.ts49 const relativePath = path.relative(workspaceRoot, projectRoot); constant
51 if (relativePath === '' || micromatch([relativePath], workspaces).length > 0) {
/expo/packages/expo-modules-autolinking/build/autolinking/
H A DverifySearchResults.js14 const relativePath = (pkg) => path_1.default.relative(cwd, pkg.path); function
20 …console.log(` - ${chalk_1.default.magenta(relativePath(revision))} (${chalk_1.default.cyan(revisio…
22 …console.log(` - ${chalk_1.default.gray(relativePath(duplicate))} (${chalk_1.default.gray(duplicate…
H A DverifySearchResults.js.map1relativePath: (pkg: PackageRevision) => string = (pkg) => path.relative(cwd, pkg.path);\n let cou…
/expo/packages/@expo/package-manager/build/utils/
H A DnodeWorkspaces.js50 const relativePath = path_1.default.relative(workspaceRoot, projectRoot);
51 … if (relativePath === '' || (0, micromatch_1.default)([relativePath], workspaces).length > 0) {
/expo/packages/expo-router/src/testing-library/
H A Drequire-context-ponyfill.ts18 const relativePath = `./${path.relative(base, fullPath)}`; constant
28 files[relativePath] = true;
/expo/tools/src/code-review/reviewers/
H A DcheckMissingChangelogs.ts66 const relativePath = path.relative(EXPO_DIR, pkg.changelogPath); constant
67 return `[\`${relativePath}\`](${head.repo?.html_url}/blob/${head.ref}/${relativePath})`;
/expo/packages/expo-router/build/testing-library/
H A Drequire-context-ponyfill.js15 const relativePath = `./${node_path_1.default.relative(base, fullPath)}`;
23 files[relativePath] = true;
/expo/packages/@expo/cli/src/export/
H A DsaveAssets.ts17 const relativePath = pathName.replace(projectRoot, ''); constant
18 Log.log(`${action} ${relativePath}`);
/expo/packages/expo-updates/android/src/main/java/expo/modules/updates/db/
H A DDatabaseIntegrityCheck.kt14 if (asset.relativePath == null || !assetExists(asset, updatesDirectory)) { in run()
38 val path = File(updatesDirectory, asset.relativePath) in assetExists()
H A DReaper.kt50 val path = File(updatesDirectory, asset.relativePath) in reapUnusedUpdates()
68 val path = File(updatesDirectory, asset.relativePath) in reapUnusedUpdates()
/expo/packages/expo-media-library/android/src/main/java/expo/modules/medialibrary/albums/migration/
H A DMigrateAlbum.kt34 val relativePath = assetsRelativePaths.iterator().next() + File.separator + albumDirName in <lambda>() constant
36 put(MediaStore.MediaColumns.RELATIVE_PATH, relativePath) in <lambda>()
/expo/packages/@expo/cli/src/start/server/metro/
H A DMetroTerminalReporter.ts147 const relativePath = path.relative(projectRoot, originModulePath); constant
156 relativePath
167 )}" from "${chalk.bold(relativePath)}".`,
173 return `Unable to resolve "${targetModuleName}" from "${relativePath}"`;
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/medialibrary/albums/migration/
H A DMigrateAlbum.kt34 val relativePath = assetsRelativePaths.iterator().next() + File.separator + albumDirName in <lambda>() constant
36 put(MediaStore.MediaColumns.RELATIVE_PATH, relativePath) in <lambda>()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/medialibrary/albums/migration/
H A DMigrateAlbum.kt34 val relativePath = assetsRelativePaths.iterator().next() + File.separator + albumDirName in <lambda>() constant
36 put(MediaStore.MediaColumns.RELATIVE_PATH, relativePath) in <lambda>()
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/medialibrary/albums/migration/
H A DMigrateAlbum.kt36 val relativePath = assetsRelativePaths.iterator().next() + File.separator + albumDirName in <lambda>() constant
38 put(MediaStore.MediaColumns.RELATIVE_PATH, relativePath) in <lambda>()
/expo/packages/expo-updates/android/src/main/java/expo/modules/updates/launcher/
H A DDatabaseLauncher.kt92 if (launchAsset.relativePath == null) { in launch()
109 val filename = asset.relativePath in launch()
153 val assetFile = File(updatesDirectory, asset.relativePath) in ensureAssetExists()
202 val assetFileLocal = File(updatesDirectory, assetEntity.relativePath) in ensureAssetExists()
/expo/packages/@expo/config-plugins/src/ios/
H A DGoogle.ts33 relativePath: string,
36 const googleServiceFilePath = path.resolve(projectRoot, relativePath);
H A DUpdates.ts139 const relativePath = path.relative(path.join(projectRoot, 'ios'), buildScriptPath); constant
140 return process.platform === 'win32' ? relativePath.replace(/\\/g, '/') : relativePath;
/expo/packages/expo-test-runner/build/
H A DTemplateProject.d.ts16 protected userFilePath(relativePath: string): string;
/expo/packages/@expo/config-plugins/src/android/
H A DPackage.ts174 globSync('**/*', { cwd: currentPackagePath }).forEach((relativePath) => {
175 const filepath = path.join(currentPackagePath, relativePath);
177 moveFileSync(filepath, path.join(newPackagePath, relativePath));
/expo/packages/expo-updates/android/src/main/java/expo/modules/updates/loader/
H A DEmbeddedLoader.kt82 assetEntity.relativePath = filename in loadAsset()
88 assetEntity.relativePath = filename in loadAsset()
/expo/packages/create-expo-module/src/
H A Dcreate-expo-module.ts186 const relativePath = dir ? path.join(dir, file) : file; constant
188 if (IGNORES_PATHS.includes(relativePath) || IGNORES_PATHS.includes(file)) {
196 files.push(...(await getFilesAsync(root, relativePath)));
198 files.push(relativePath);

123