chore: 修改发布脚本,使用pnpm发布

This commit is contained in:
roymondchen 2023-12-12 19:54:49 +08:00
parent 04a72da06c
commit 978391fe90

View File

@ -186,16 +186,10 @@ async function publishPackage(pkgName, version, runIfNotDry) {
step(`Publishing ${pkgName}...`);
try {
await runIfNotDry(
// note: use of yarn is intentional here as we rely on its publishing
// behavior.
'yarn',
['publish', '--new-version', version, ...(releaseTag ? ['--tag', releaseTag] : []), '--access', 'public'],
{
cwd: pkgRoot,
stdio: 'pipe',
},
);
await runIfNotDry('pnpm', ['publish', ...(releaseTag ? ['--tag', releaseTag] : []), '--access', 'public'], {
cwd: pkgRoot,
stdio: 'pipe',
});
console.log(chalk.green(`Successfully published ${pkgName}@${version}`));
} catch (e) {
if (e.stderr.match(/previously published/)) {