From 0f5075ba42d1a6347355ad3d05952a9deaf85867 Mon Sep 17 00:00:00 2001 From: AnxietyisReal <96593068+AnxietyisReal@users.noreply.github.com> Date: Sat, 25 Feb 2023 13:30:09 +1100 Subject: [PATCH] Why is this here? --- src/commands/dev.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/dev.ts b/src/commands/dev.ts index edf7e00..9050d45 100644 --- a/src/commands/dev.ts +++ b/src/commands/dev.ts @@ -46,7 +46,7 @@ export default { } if (error) return; if (typeof output == 'object') { - output = 'js\n'+util.formatWithOptions({depth: 1, colors: true}, '%O', output) + output = 'js\n'+util.formatWithOptions({depth: 1}, '%O', output) } else { output = '\n' + String(output); }