Skip to content

Commit

Permalink
prepare-release: Fix not being able to specify version for package th…
Browse files Browse the repository at this point in the history
…at should be released
  • Loading branch information
eps1lon committed Oct 9, 2024
1 parent 1a2c028 commit 480b2d0
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@ const run = async ({skipPackages}, versionsMap) => {

let version = bestGuessVersion;
if (
skipPackages.some(skipPackageName =>
packageNames.includes(skipPackageName)
)
skipPackages.some(skipPackageName => packages.includes(skipPackageName))
) {
await confirm(
theme`{spinnerSuccess ✓} Version for ${packageNames} will remain {version ${bestGuessVersion}}`
Expand Down

0 comments on commit 480b2d0

Please sign in to comment.