Skip to content

Commit

Permalink
fix quiet flag in npm plugin. was always on
Browse files Browse the repository at this point in the history
  • Loading branch information
hipstersmoothie committed Apr 20, 2020
1 parent 3ec5ede commit a4b5c04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/npm/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ export default class NPMPlugin implements IPlugin {

/** Tap into auto plugin points. */
apply(auto: Auto) {
const isQuiet = auto.logger.logLevel === "verbose";
const isQuiet = auto.logger.logLevel === "quiet";
const isVerbose =
auto.logger.logLevel === "verbose" ||
auto.logger.logLevel === "veryVerbose";
Expand Down

0 comments on commit a4b5c04

Please sign in to comment.