We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c7b6b5 commit 438cd90Copy full SHA for 438cd90
scripts/release-packages.cjs
@@ -71,8 +71,8 @@ async function releasePackages() {
71
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'));
72
const currentVersion = packageJson.version;
73
74
- // Skip if not a beta version (no changeset)
75
- if (!currentVersion.includes('-beta')) {
+ // Skip non-beta versions only when publishing with beta tag
+ if (releaseTag === 'beta' && !currentVersion.includes('-beta')) {
76
log.info(`Skipping ${pkg.name} - no beta version (${currentVersion})`);
77
continue;
78
}
0 commit comments