Skip to content

Commit

Permalink
fix colors and spacing in log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
joemaller committed Jan 12, 2022
1 parent 862bd36 commit aa2e684
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/update-file.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ const writeLogResult = async (result, file, version, config) => {
} else {
updateMsg =
`Updated ${chalk.magenta(path.basename(file))} ` +
`from ${chalk.cyan(result.oldVersion)} ` +
`to${chalk.cyan(version)}`;
`from ${chalk.gray(result.oldVersion)} ` +
`to ${chalk.cyan(version)}`;

if (!config.dryRun) {
try {
Expand Down

0 comments on commit aa2e684

Please sign in to comment.