Skip to content

Commit

Permalink
do not attempt to publish private:true packages
Browse files Browse the repository at this point in the history
doesn't work anyway, just an extra proc to run
  • Loading branch information
isaacs committed Sep 1, 2023
1 parent f911b9b commit 4f9c277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/version.mts
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ const publish = (names: string[], pre: boolean = false) => {
// push worked, try to publish, skip any private packages
const pn = names.filter(n => !manifests[n].private)
// always publish tap last
const noTap = names.filter(n => n !== 'tap')
const noTap = pn.filter(n => n !== 'tap')
npm(
{ stdio: 'inherit' },
'publish',
Expand Down

0 comments on commit 4f9c277

Please sign in to comment.