Skip to content

Commit

Permalink
Treat loglevel silly as verbose too
Browse files Browse the repository at this point in the history
  • Loading branch information
vweevers committed Aug 5, 2022
1 parent 0078d78 commit 8e787f7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bin.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ function buildFromSource () {
}

function verbose () {
return hasFlag('--verbose') || process.env.npm_config_loglevel === 'verbose'
return hasFlag('--verbose') ||
process.env.npm_config_loglevel === 'verbose' ||
process.env.npm_config_loglevel === 'silly'
}

// TODO (next major): remove in favor of env.npm_config_* which works since npm
Expand Down

0 comments on commit 8e787f7

Please sign in to comment.