@manypkg/cli
Version:
Manypkg is a linter for `package.json` files in Yarn, npm, Lerna, pnpm or Rush monorepos.
61 lines (53 loc) • 1.39 kB
text/typescript
import { getPackages } from "@manypkg/get-packages";
import type { PackageJSON } from "@changesets/types";
import { exec } from "tinyexec";
import pLimit from "p-limit";
let npmLimit = pLimit(40);
function getCorrectRegistry() {
let registry =
process.env.npm_config_registry === "https://registry.yarnpkg.com"
? undefined
: process.env.npm_config_registry;
return registry;
}
async function tagApackage(
packageJson: PackageJSON,
tag: string,
otpCode?: string
) {
// Due to a super annoying issue in yarn, we have to manually override this env variable
// See: https://github.com/yarnpkg/yarn/issues/2935#issuecomment-355292633
const envOverride = {
npm_config_registry: getCorrectRegistry(),
};
let flags = [];
if (otpCode) {
flags.push("--otp", otpCode);
}
return await exec(
"npm",
[
"dist-tag",
"add",
`${packageJson.name}@${packageJson.version}`,
tag,
...flags,
],
{
nodeOptions: {
stdio: "inherit",
env: envOverride,
},
}
);
}
export async function npmTagAll([tag, _, otp]: string[]) {
let { packages } = await getPackages(process.cwd());
await Promise.all(
packages
.filter(({ packageJson }) => packageJson.private !== true)
.map(({ packageJson }) =>
npmLimit(() => tagApackage(packageJson, tag, otp))
)
);
}