Skip to content

Commit

Permalink
chore: log color
Browse files Browse the repository at this point in the history
  • Loading branch information
Hajime-san committed Apr 10, 2023
1 parent b2c1cd9 commit 430770a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/bin_internal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,13 @@ ${result}
});
})).then(() => {
console.log(
`%cDry run: ${transformedList.length} files, finished.
${LOG_FILE_NAME}`,
`%cDry run: ${transformedList.length} files, finished.`,
'color: green',
);
console.log(
`%cInfo: ${LOG_FILE_NAME}`,
'color: blue',
);
}).catch((error) => {
throw new Error(error);
});
Expand Down

0 comments on commit 430770a

Please sign in to comment.