Home
last modified time | relevance | path

Searched refs:packagePath (Results 1 – 22 of 22) sorted by relevance

/expo/packages/expo-modules-autolinking/build/autolinking/
H A DfindModules.js32 …const packagePath = await fs_extra_1.default.realpath(path_1.default.join(searchPath, path_1.defau…
33 …oModuleConfig_1.requireAndResolveExpoModuleConfig)(path_1.default.join(packagePath, path_1.default…
34 const { name, version } = resolvePackageNameAndVersion(packagePath, {
45 …const maybeIsolatedModulesPath = path_1.default.join(packagePath, name.startsWith('@') && name.inc…
58 path: packagePath,
145 function resolvePackageNameAndVersion(packagePath, { fallbackToDirName } = {}) { argument
147 const { name, version } = require(path_1.default.join(packagePath, 'package.json'));
154 name: path_1.default.basename(packagePath),
H A DfindModules.js.map1packagePath = await fs.realpath(path.join(searchPath, path.dirname(packageConfigPath)));\n co…
/expo/packages/expo-modules-autolinking/src/autolinking/
H A DfindModules.ts37 const packagePath = await fs.realpath(path.join(searchPath, path.dirname(packageConfigPath))); constant
39 path.join(packagePath, path.basename(packageConfigPath))
42 const { name, version } = resolvePackageNameAndVersion(packagePath, {
55 packagePath,
73 path: packagePath,
180 packagePath: string,
184 const { name, version } = require(path.join(packagePath, 'package.json'));
190 name: path.basename(packagePath),
/expo/packages/@expo/prebuild-config/src/plugins/unversioned/expo-splash-screen/
H A DwithAndroidSplashScreen.ts46 const packagePath = resolveFrom(projectRoot, 'expo-splash-screen/package.json'); constant
47 if (packagePath) {
48 const version = JsonFile.read(packagePath).version?.toString() ?? '';
/expo/apps/native-component-list/plugins/
H A DwithSettingsImport.js3 const withSettingsImport = (config, { packageName, packagePath }) => { argument
9 project(":${packageName}").projectDir = new File("${packagePath}")`;
/expo/template-files/generate-bare-app/scripts/
H A DaddPackages.js48 const packagePath = path.resolve(expoDirectory, 'packages', packageName, 'package.json');
50 if (!fs.existsSync(packagePath)) {
56 const pkg = require(packagePath);
/expo/packages/expo-yarn-workspaces/common/
H A Dget-symlinked-modules.js7 module.exports = function getSymlinkedNodeModulesForDirectory(packagePath) { argument
8 const nodeModulesPath = path.join(packagePath, 'node_modules');
/expo/packages/expo-yarn-workspaces/bin/
H A Dsymlink-necessary-packages.js50 const packagePath = path.join(nodeModulesPath, packageName.replace('/', path.sep));
51 debug(`Checking if %s is installed at %s`, packageName, packagePath);
53 let stats = getFileStats(packagePath);
/expo/packages/@expo/prebuild-config/build/plugins/unversioned/expo-splash-screen/
H A DwithAndroidSplashScreen.js101 const packagePath = (0, _resolveFrom().default)(projectRoot, 'expo-splash-screen/package.json');
102 if (packagePath) {
104 …nFile$read$versio = (_JsonFile$read$versio2 = _jsonFile().default.read(packagePath).version) === n…
H A DwithAndroidSplashScreen.js.map1packagePath","resolveFrom","_JsonFile$read$versio","_JsonFile$read$versio2","version","JsonFile","…
/expo/packages/@expo/cli/src/run/ios/appleDevice/client/
H A DInstallationProxyClient.ts153 packagePath: string,
161 debug(`installApp, packagePath: ${packagePath}, bundleId: ${bundleId}`);
166 PackagePath: packagePath,
/expo/packages/@expo/config-plugins/src/android/
H A DPackage.ts50 const packagePath = path.dirname(mainApplication); constant
51 const packagePathParts = path.relative(packageRoot, packagePath).split(path.sep).filter(Boolean);
70 const packagePath = path.dirname(filePath); constant
71 const packagePathParts = path.relative(packageRoot, packagePath).split(path.sep).filter(Boolean);
/expo/tools/src/commands/
H A DAddChangelog.ts133 const packagePath = path.join(Directories.getPackagesDir(), packageName, 'CHANGELOG.md'); constant
134 if (!(await fs.pathExists(packagePath))) {
138 const changelog = Changelogs.loadFrom(packagePath);
H A DGenerateBareApp.ts161 const packagePath = path.resolve(PACKAGES_DIR, packageName, 'package.json'); constant
163 if (!fs.existsSync(packagePath)) {
170 const pkg = require(packagePath);
/expo/apps/native-component-list/
H A Dapp.config.js40 packagePath: '../../../packages/expo-modules-test-core/android', property
/expo/packages/@expo/config-plugins/build/android/
H A DPackage.js105 const packagePath = _path().default.dirname(mainApplication);
106 …const packagePathParts = _path().default.relative(packageRoot, packagePath).split(_path().default.…
114 const packagePath = _path().default.dirname(filePath);
115 …const packagePathParts = _path().default.relative(packageRoot, packagePath).split(_path().default.…
H A DPackage.js.map1packagePath","dirname","packagePathParts","relative","split","sep","filter","Boolean","getCurrentP…
/expo/packages/@expo/cli/src/prebuild/
H A DresolveTemplate.ts87 const packagePath = `${filePath ? `/${filePath}` : ''}/package.json`; constant
89 return isUrlOk(contentsUrl + packagePath + `?ref=${branch}`);
/expo/packages/create-expo-module/src/
H A Dcreate-expo-module.ts109 const packagePath = options.source constant
116 await createModuleFromTemplate(packagePath, targetDir, data);
136 await fs.remove(packagePath);
/expo/packages/create-expo-module/build/
H A Dcreate-expo-module.js76 const packagePath = options.source
81 await createModuleFromTemplate(packagePath, targetDir, data);
100 await fs_extra_1.default.remove(packagePath);
H A Dcreate-expo-module.js.map1packagePath = options.source\n ? path.join(CWD, options.source)\n : await downloadPackageAsy…
/expo/tools/src/
H A DPackages.ts387 const packagePath = path.dirname(fullPackageJsonPath); constant
390 return new Package(packagePath, packageJson);