Skip to content

Commit

Permalink
feat: Adjusting bold aesthetic
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisparnin committed Dec 30, 2018
1 parent 9b7d20f commit 19fa60b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Expand Up @@ -27,12 +27,12 @@ async function verify(env_address, criteria_path, connector) {

for (let group of groups) {

console.log(chalk`\n\t{italic ${group.description}\n}`);
console.log(chalk`\n\t{bold ${group.description}\n}`);

for( let check of group.checks ) {
let instance = new check.module(connector, reporter);

console.log(chalk`\t{bold ${check.name} check}`);
console.log(chalk`\t{white ${check.name} check}`);
let results = await instance.check(context, check.args);
if( check.args && check.args.comment )
{
Expand Down

0 comments on commit 19fa60b

Please sign in to comment.