We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc83f4e commit 44282aeCopy full SHA for 44282ae
release/core/publish/steps/generate-tarballs.ts
@@ -60,7 +60,7 @@ export async function generatePackageTarballs(
60
const pkgDir = path.join(PROJECT_ROOT, path.dirname(pkg.filePath));
61
const tarballPath = path.join(tarballDir, `${toTarballName(pkg.pkgData.name)}-${pkg.pkgData.version}.tgz`);
62
pkg.tarballPath = tarballPath;
63
- await exec({ cwd: pkgDir, cmd: `pnpm pack --pack-destination=${tarballDir}`, condense: true });
+ await exec({ cwd: pkgDir, cmd: `npm pack --pack-destination=${tarballDir}`, condense: true });
64
} catch (e) {
65
console.log(`🔴 ${chalk.redBright('failed to generate tarball for')} ${chalk.yellow(pkg.pkgData.name)}`);
66
throw e;
0 commit comments