Diagnostics output is sometimes output to STDERR by some commonly used tools, like esbuild. That means we're seeing things like the following:
[build] Watching for changes...
[build ERROR] www/script.js 45.9kb
[build ERROR] www/script.js.map 73.1kb
[build ERROR] ⚡ Done in 3ms
It's still important to identify between STDOUT and STDERR, but I think an asterisk will be enough, so the above example would actually look like this:
[build] Watching for changes...
[build *] www/script.js 45.9kb
[build *] www/script.js.map 73.1kb
[build *] ⚡ Done in 3ms
Diagnostics output is sometimes output to STDERR by some commonly used tools, like
esbuild. That means we're seeing things like the following:It's still important to identify between STDOUT and STDERR, but I think an asterisk will be enough, so the above example would actually look like this: