Rocky_Mountain_Vending/.pnpm-store/v10/files/2c/36b1deac3a35cb2a8b1c279d3ae81c5dca74e7dda077d707f98c1c6fce4541e0cc90adfef5b3d11221e67e6d3f42707708cba884d135bc51c9f81fc505ee46
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

29 lines
No EOL
796 B
Text

"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