/home/techb158/balavpn.abdallabala.com/node_modules/next/dist/lib/helpers
NameSizeModeActions
get-cache-directory.d.ts920666editdlrm
get-cache-directory.js26950666editdlrm
get-cache-directory.js.map35150666editdlrm
get-npx-command.d.ts640666editdlrm
get-npx-command.js7960666editdlrm
get-npx-command.js.map9460666editdlrm
get-online.d.ts550666editdlrm
get-online.js12820666editdlrm
get-online.js.map16100666editdlrm
get-pkg-manager.d.ts1260666editdlrm
get-pkg-manager.js17800666editdlrm
get-pkg-manager.js.map20320666editdlrm
get-registry.d.ts2160666editdlrm
get-registry.js17940666editdlrm
get-registry.js.map25910666editdlrm
get-reserved-port.d.ts25320666editdlrm
get-reserved-port.js25210666editdlrm
get-reserved-port.js.map32190666editdlrm
install.d.ts7340666editdlrm
install.js25260666editdlrm
install.js.map38590666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/next/dist/lib/helpers/get-npx-command.js (796B)
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "getNpxCommand", { enumerable: true, get: function() { return getNpxCommand; } }); const _child_process = require("child_process"); const _getpkgmanager = require("./get-pkg-manager"); function getNpxCommand(baseDir) { const pkgManager = (0, _getpkgmanager.getPkgManager)(baseDir); let command = 'npx'; if (pkgManager === 'pnpm') { command = 'pnpm dlx'; } else if (pkgManager === 'yarn') { try { (0, _child_process.execSync)('yarn dlx --help', { stdio: 'ignore' }); command = 'yarn dlx'; } catch {} } return command; } //# sourceMappingURL=get-npx-command.js.map