Skip to content

Commit

Permalink
chore: include number of packages being versioned in summary text
Browse files Browse the repository at this point in the history
  • Loading branch information
Salakar committed Feb 10, 2022
1 parent 279c53e commit eddfcf6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/melos/lib/src/commands/version.dart
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,9 @@ Hint: try running "melos version --all" to include private packages.
}

logger?.stdout(
AnsiStyles.magentaBright('The following packages will be updated:\n'),
AnsiStyles.magentaBright(
'The following ${AnsiStyles.bold(pendingPackageUpdates.length.toString())} packages will be updated:\n',
),
);

_logNewVersionTable(
Expand Down

0 comments on commit eddfcf6

Please sign in to comment.