securityos/node_modules/next/dist/esm/lib/helpers/get-registry.js

20 lines
709 B
JavaScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
import { execSync } from "child_process";
import { getPkgManager } from "./get-pkg-manager";
/**
* Returns the package registry using the user's package manager.
* The URL will have a trailing slash.
* @default https://registry.npmjs.org/
*/ export function getRegistry(baseDir = process.cwd()) {
let registry = `https://registry.npmjs.org/`;
try {
const pkgManager = getPkgManager(baseDir);
const output = execSync(`${pkgManager} config get registry`).toString().trim();
if (output.startsWith("http")) {
registry = output.endsWith("/") ? output : `${output}/`;
}
} finally{
return registry;
}
}
//# sourceMappingURL=get-registry.js.map