()
| 891 | } |
| 892 | |
| 893 | async function findPnpmNodeModulesPath(): Promise<string | undefined> { |
| 894 | return await findUp( |
| 895 | async (directory) => { |
| 896 | const pnpmModules = join(directory, "node_modules", ".pnpm", "node_modules"); |
| 897 | |
| 898 | const hasPnpmNodeModules = await pathExists(pnpmModules); |
| 899 | |
| 900 | if (hasPnpmNodeModules) { |
| 901 | return pnpmModules; |
| 902 | } |
| 903 | }, |
| 904 | { type: "directory" } |
| 905 | ); |
| 906 | } |
| 907 | |
| 908 | let hasResolvedEnvVars = false; |
| 909 | let resolvedEnvVars: Record<string, string> = {}; |
no test coverage detected
searching dependent graphs…