Home
last modified time | relevance | path

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

12

/expo/packages/@expo/package-manager/src/utils/__tests__/
H A DnodeWorkspaces-test.ts11 const workspaceRoot = '/monorepo'; constant
23 workspaceRoot
26 expect(findPnpmWorkspaceRoot(projectRoot)).toBe(workspaceRoot);
36 workspaceRoot
39 expect(findPnpmWorkspaceRoot(workspaceRoot)).toBe(workspaceRoot);
49 workspaceRoot
H A DnodeManagers-test.ts118 const workspaceRoot = path.resolve('/monorepo/'); constant
134 workspaceRoot
155 workspaceRoot
176 workspaceRoot
197 workspaceRoot
219 workspaceRoot
/expo/packages/@expo/metro-config/src/
H A DgetWatchFolders.ts84 const workspaceRoot = getWorkspaceRoot(path.resolve(projectRoot)); constant
86 if (!workspaceRoot) {
90 const packages = resolveAllWorkspacePackageJsonPaths(workspaceRoot);
96 path.join(workspaceRoot, 'node_modules'),
H A DgetModulesPaths.ts23 const workspaceRoot = getWorkspaceRoot(path.resolve(projectRoot)); // Absolute path or null constant
24 if (workspaceRoot) {
26 paths.push(path.resolve(workspaceRoot, 'node_modules'));
/expo/packages/@expo/package-manager/src/utils/
H A DnodeWorkspaces.ts48 const workspaceRoot = path.dirname(workspaceFile); constant
49 const relativePath = path.relative(workspaceRoot, projectRoot);
52 return workspaceRoot;
/expo/packages/@expo/metro-config/build/
H A DgetWatchFolders.js112 …const workspaceRoot = (0, _getModulesPaths().getWorkspaceRoot)(_path().default.resolve(projectRoot…
114 if (!workspaceRoot) {
117 const packages = resolveAllWorkspacePackageJsonPaths(workspaceRoot);
121 …return uniqueItems([_path().default.join(workspaceRoot, 'node_modules'), ...packages.map(pkg => _p…
H A DgetModulesPaths.js47 …const workspaceRoot = getWorkspaceRoot(_path().default.resolve(projectRoot)); // Absolute path or …
48 if (workspaceRoot) {
50 paths.push(_path().default.resolve(workspaceRoot, 'node_modules'));
H A DgetModulesPaths.js.map1workspaceRoot","path","resolve","push","getServerRoot","_getWorkspaceRoot","env","EXPO_USE_METRO_W…
/expo/packages/@expo/package-manager/build/utils/
H A DnodeWorkspaces.js49 const workspaceRoot = path_1.default.dirname(workspaceFile);
50 const relativePath = path_1.default.relative(workspaceRoot, projectRoot);
52 return workspaceRoot;
/expo/packages/@expo/package-manager/build/node/
H A DBunPackageManager.d.ts6 workspaceRoot(): BunPackageManager | null; method in BunPackageManager
H A DPnpmPackageManager.d.ts6 workspaceRoot(): PnpmPackageManager | null; method in PnpmPackageManager
H A DYarnPackageManager.d.ts8 workspaceRoot(): YarnPackageManager | null; method in YarnPackageManager
H A DNpmPackageManager.d.ts6 workspaceRoot(): NpmPackageManager | null; method in NpmPackageManager
H A DBunPackageManager.js10 workspaceRoot() { method in BunPackageManager
H A DBasePackageManager.d.ts23 abstract workspaceRoot(): PackageManager | null;
H A DPnpmPackageManager.js14 workspaceRoot() { method in PnpmPackageManager
H A DYarnPackageManager.js16 workspaceRoot() { method in YarnPackageManager
/expo/packages/@expo/package-manager/src/node/
H A DBunPackageManager.ts9 workspaceRoot() { method in BunPackageManager
H A DPnpmPackageManager.ts10 workspaceRoot() { method in PnpmPackageManager
H A DYarnPackageManager.ts16 workspaceRoot() { method in YarnPackageManager
/expo/packages/@expo/package-manager/src/node/__tests__/
H A DBunPackageManager-test.ts366 const workspaceRoot = '/monorepo'; constant
378 expect(bun.workspaceRoot()).toBeNull();
390 workspaceRoot
394 const root = bun.workspaceRoot();
H A DPnpmPackageManager-test.ts419 const workspaceRoot = '/monorepo'; constant
431 expect(pnpm.workspaceRoot()).toBeNull();
443 workspaceRoot
447 const root = pnpm.workspaceRoot();
H A DYarnPackageManager-test.ts394 const workspaceRoot = '/monorepo'; constant
406 expect(yarn.workspaceRoot()).toBeNull();
418 workspaceRoot
422 const root = yarn.workspaceRoot();
/expo/packages/@expo/package-manager/build/
H A DPackageManager.d.ts29 workspaceRoot(): PackageManager | null; method
/expo/packages/@expo/package-manager/src/
H A DPackageManager.ts35 workspaceRoot(): PackageManager | null; method

12