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 818373d commit 3c739f0Copy full SHA for 3c739f0
examples/changesets/index.ts
@@ -59,7 +59,7 @@ async function main() {
59
(pkg) => !major.includes(pkg) && !minor.includes(pkg)
60
);
61
if (possiblePackages.length === 0) return;
62
- let note = possiblePackages.join('\n');
+ let note = possiblePackages.join(color.dim(', '));
63
64
p.log.step(`These packages will have a ${color.green('patch')} bump.\n${color.dim(note)}`);
65
return possiblePackages;
0 commit comments