Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: manually run prepack #9241

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions release/core/publish/steps/generate-tarballs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ export async function generatePackageTarballs(
}

try {
if (pkg.pkgData.scripts?.['prepack']) {
await exec({ cwd: path.join(PROJECT_ROOT, path.dirname(pkg.filePath)), cmd: `bun run prepack` });
}
await amendFilesForTypesStrategy(pkg, pkgStrategy);
} catch (e) {
console.log(`🔴 ${chalk.redBright('failed to amend files to pack for')} ${chalk.yellow(pkg.pkgData.name)}`);
Expand Down Expand Up @@ -199,6 +202,9 @@ async function makeTypesStable(pkg: Package) {
}

async function amendFilesForTypesStrategy(pkg: Package, strategy: APPLIED_STRATEGY) {
if (pkg.pkgData.scripts?.['prepack']) {
delete pkg.pkgData.scripts['prepack'];
}
switch (strategy.types) {
case 'private':
makeTypesPrivate(pkg);
Expand Down
Loading