We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 694dba9 commit 43e6194Copy full SHA for 43e6194
lib/utils/display.js
@@ -276,6 +276,13 @@ class Display {
276
return
277
}
278
279
+ // HACK: if it looks like the banner and we are silent do not print it.
280
+ // There's no other way to do this right now :(
281
+ // eslint-disable-next-line max-len
282
+ if (this.#silent && args.length === 1 && args[0].startsWith('\n> ') && args[0].endsWith('\n')) {
283
+ return
284
+ }
285
+
286
this.#writeOutput(level, meta, ...args)
287
})
288
0 commit comments