Skip to content

Commit

Permalink
don't use bold
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Apr 29, 2014
1 parent 4f9270e commit bd1ab89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stylish.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ module.exports = {
}).join('\n') + '\n\n';

if (total > 0) {
ret += chalk.red.bold((process.platform !== 'win32' ? '✖ ' : '') + total + ' problem' + (total === 1 ? '' : 's'));
ret += chalk.red((process.platform !== 'win32' ? '✖ ' : '') + total + ' problem' + (total === 1 ? '' : 's'));
} else {
ret += chalk.green.bold((process.platform !== 'win32' ? '✔ ' : '') + 'No problems');
ret += chalk.green((process.platform !== 'win32' ? '✔ ' : '') + 'No problems');
ret = '\n' + ret.trim();
}

Expand Down

0 comments on commit bd1ab89

Please sign in to comment.