Home
last modified time | relevance | path

Searched refs:findPnpmWorkspaceRoot (Results 1 – 8 of 8) sorted by relevance

/expo/packages/@expo/package-manager/src/utils/__tests__/
H A DnodeWorkspaces-test.ts4 import { findPnpmWorkspaceRoot, PNPM_WORKSPACE_FILE } from '../nodeWorkspaces';
10 describe(findPnpmWorkspaceRoot, () => {
26 expect(findPnpmWorkspaceRoot(projectRoot)).toBe(workspaceRoot);
39 expect(findPnpmWorkspaceRoot(workspaceRoot)).toBe(workspaceRoot);
52 expect(findPnpmWorkspaceRoot(projectRoot)).toBeNull();
/expo/packages/@expo/package-manager/build/utils/
H A DnodeWorkspaces.js6 exports.findPnpmWorkspaceRoot = exports.findYarnOrNpmWorkspaceRoot = exports.BUN_LOCK_FILE = export…
36 function findPnpmWorkspaceRoot(projectRoot) { function
61 exports.findPnpmWorkspaceRoot = findPnpmWorkspaceRoot;
H A DnodeWorkspaces.d.ts13 export declare function findPnpmWorkspaceRoot(projectRoot: string): string | null;
H A DnodeManagers.js24 pnpm: nodeWorkspaces_1.findPnpmWorkspaceRoot,
/expo/packages/@expo/package-manager/src/node/
H A DPnpmPackageManager.ts3 import { findPnpmWorkspaceRoot, PNPM_LOCK_FILE } from '../utils/nodeWorkspaces';
11 const root = findPnpmWorkspaceRoot(this.ensureCwdDefined('workspaceRoot'));
/expo/packages/@expo/package-manager/src/utils/
H A DnodeManagers.ts5 findPnpmWorkspaceRoot,
41 pnpm: findPnpmWorkspaceRoot,
H A DnodeWorkspaces.ts31 export function findPnpmWorkspaceRoot(projectRoot: string): string | null { function
/expo/packages/@expo/package-manager/build/node/
H A DPnpmPackageManager.js15 … const root = (0, nodeWorkspaces_1.findPnpmWorkspaceRoot)(this.ensureCwdDefined('workspaceRoot'));