/opt/canhelp/node_modules/next/dist/esm/lib/helpers
NameSizeModeActions
get-cache-directory.js23180644editdlrm
get-cache-directory.js.map34970644editdlrm
get-npx-command.js5390644editdlrm
get-npx-command.js.map9490644editdlrm
get-online.js8620644editdlrm
get-online.js.map15990644editdlrm
get-pkg-manager.js13010644editdlrm
get-pkg-manager.js.map20290644editdlrm
get-registry.js17120644editdlrm
get-registry.js.map26170644editdlrm
get-reserved-port.js19070644editdlrm
get-reserved-port.js.map31580644editdlrm
install.js22600644editdlrm
install.js.map38500644editdlrm
Edit: /opt/canhelp/node_modules/next/dist/esm/lib/helpers/get-pkg-manager.js (1301B)
import fs from 'fs'; import path from 'path'; import { execSync } from 'child_process'; export function getPkgManager(baseDir) { try { for (const { lockFile, packageManager } of [ { lockFile: 'yarn.lock', packageManager: 'yarn' }, { lockFile: 'pnpm-lock.yaml', packageManager: 'pnpm' }, { lockFile: 'package-lock.json', packageManager: 'npm' } ]){ if (fs.existsSync(path.join(baseDir, lockFile))) { return packageManager; } } const userAgent = process.env.npm_config_user_agent; if (userAgent) { if (userAgent.startsWith('yarn')) { return 'yarn'; } else if (userAgent.startsWith('pnpm')) { return 'pnpm'; } } try { execSync('yarn --version', { stdio: 'ignore' }); return 'yarn'; } catch { execSync('pnpm --version', { stdio: 'ignore' }); return 'pnpm'; } } catch { return 'npm'; } } //# sourceMappingURL=get-pkg-manager.js.map