forked from rosa/hakurei
Compare commits
12 Commits
613c95d263
...
2e1f2bd93c
| Author | SHA1 | Date | |
|---|---|---|---|
|
2e1f2bd93c
|
|||
|
bd14ea200f
|
|||
|
916dc28c4a
|
|||
|
af0f55760d
|
|||
|
2379207fb9
|
|||
|
5703c17d4f
|
|||
|
b5357ef274
|
|||
|
f1ab20b099
|
|||
|
8c08d9401c
|
|||
|
abecc481d1
|
|||
|
908d86466e
|
|||
|
f664c50a7c
|
@@ -249,11 +249,12 @@ export class StreamReporter implements Reporter {
|
|||||||
case "success":
|
case "success":
|
||||||
this.#successes.push({ path, ...result });
|
this.#successes.push({ path, ...result });
|
||||||
// NOTE: emojis are used instead of colored Unicode symbols as
|
// NOTE: emojis are used instead of colored Unicode symbols as
|
||||||
// coloring isn't possible through all streams and there detecting
|
// coloring isn't possible through all streams and detecting if
|
||||||
// if colors should be used is very difficult¹. Furthermore,
|
// colors should be used is very difficult¹. Furthermore, ensuring
|
||||||
// ensuring reasonable contrast is retained on every possible theme
|
// reasonable contrast is retained on every possible theme is
|
||||||
// is difficult, with reverse video often being the only way, and
|
// difficult, with reverse video often being the only way (which
|
||||||
// the Unicode characters might be too small to be immediately
|
// also has questionable support across terminal emulators), and the
|
||||||
|
// Unicode characters might be too small to be immediately
|
||||||
// noticeable. Emojis have an upper hand in that they're more common
|
// noticeable. Emojis have an upper hand in that they're more common
|
||||||
// than obscure Unicode characters—which also means you're more
|
// than obscure Unicode characters—which also means you're more
|
||||||
// likely to have an emoji font but not a font with those
|
// likely to have an emoji font but not a font with those
|
||||||
@@ -264,7 +265,7 @@ export class StreamReporter implements Reporter {
|
|||||||
// https://no-color.org, https://bixense.com/clicolors, and
|
// https://no-color.org, https://bixense.com/clicolors, and
|
||||||
// https://force-color.org, checking if setting the
|
// https://force-color.org, checking if setting the
|
||||||
// ENABLE_VIRTUAL_TERMINAL_PROCESSING bit on the TTY works when on
|
// ENABLE_VIRTUAL_TERMINAL_PROCESSING bit on the TTY works when on
|
||||||
// on Windows, and doing something similar for Cygwin
|
// on Windows, and doing something similar for Cygwin.
|
||||||
if (this.verbose) this.stream.writeln(`✅️ ${pathStr}`);
|
if (this.verbose) this.stream.writeln(`✅️ ${pathStr}`);
|
||||||
break;
|
break;
|
||||||
case "failure":
|
case "failure":
|
||||||
|
|||||||
Reference in New Issue
Block a user