-
Notifications
You must be signed in to change notification settings - Fork 34
Open
Labels
Description
Issue description or question
Quokka output does not seem to support color formatting, whereas WebStorm and Terminal do.
Colours are really helpful for inspecting larger objects / arrays / config / etc.
Is this issue related to Quokka not outputting the expected results of your code?
Yes
Sample code
const { inspect } = require('util')
function log (value, colors = false) {
console.log(inspect(value, { colors }))
}
const values = [ 1, 'foo', true ]
log (values)
log (values, true)Quokka.js Console Output
WebStorm Terminal Output
Code editor version
WebStorm 2023.1
OS name and version
OSX Monterey 12.6
Reactions are currently unavailable

