From 2895052cad9835797f238435e07378562d985fc7 Mon Sep 17 00:00:00 2001 From: toast-ts <96593068+toast-ts@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); }