Skip to content

Commit 3c739f0

Browse files
committed
refactor: match changeset patch result with multiselect result
1 parent 818373d commit 3c739f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/changesets/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ async function main() {
5959
(pkg) => !major.includes(pkg) && !minor.includes(pkg)
6060
);
6161
if (possiblePackages.length === 0) return;
62-
let note = possiblePackages.join('\n');
62+
let note = possiblePackages.join(color.dim(', '));
6363

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

0 commit comments

Comments
 (0)