Skip to content

Commit

Permalink
Terminal: remove blackBg to help white screens
Browse files Browse the repository at this point in the history
  • Loading branch information
austencollins committed Jan 22, 2016
1 parent 72489fd commit 2ae8f0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/utils/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ exports.generateMainHelp = function(allCommands) {
console.log(chalk.dim('* Pass "--help" after any <context> <action> for contextual help'));

for (let cmdContext in allCommands) {
console.log(chalk.bgBlack('\n"%s" actions:'), cmdContext);
console.log('\n"%s" actions:', cmdContext);
for (let cmdAction in allCommands[cmdContext]) {
console.log(chalk.yellow(' %s'), cmdAction);
}
Expand All @@ -360,7 +360,7 @@ exports.generateContextHelp = function(cmdContext, allCommands) {
console.log(chalk.yellow.underline('\n"%s" command actions:'), cmdContext);

for (let cmdAction in allCommands[cmdContext]) {
console.log(chalk.bgBlack('\n%s'), cmdAction);
console.log('\n%s', cmdAction);
}

return Promise.resolve();
Expand Down

0 comments on commit 2ae8f0a

Please sign in to comment.