Skip to content

Commit

Permalink
refactor: match changeset patch result with multiselect result
Browse files Browse the repository at this point in the history
  • Loading branch information
orochaa committed Aug 28, 2023
1 parent 818373d commit 3c739f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/changesets/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ async function main() {
(pkg) => !major.includes(pkg) && !minor.includes(pkg)
);
if (possiblePackages.length === 0) return;
let note = possiblePackages.join('\n');
let note = possiblePackages.join(color.dim(', '));

p.log.step(`These packages will have a ${color.green('patch')} bump.\n${color.dim(note)}`);
return possiblePackages;
Expand Down

0 comments on commit 3c739f0

Please sign in to comment.