From 8d0aa1c38db797157f95d7d8962efb07f0c9c7b9 Mon Sep 17 00:00:00 2001 From: David Benton Date: Tue, 7 Oct 2025 14:46:08 +1300 Subject: [PATCH] change logging to stream and new-only to reduce log noise --- turbo.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/turbo.json b/turbo.json index 8d4ad10c4fa..7020d78ab3c 100644 --- a/turbo.json +++ b/turbo.json @@ -1,12 +1,13 @@ { "$schema": "https://turbo.build/schema.json", "globalEnv": ["GOCACHE", "LOCALAPPDATA"], - "ui": "tui", + "ui": "stream", "tasks": { "lint:fix": {}, "build": { "outputs": ["dist/**", "storybook-static/**", ".output", ".nuxt", ".next", "build"], - "dependsOn": ["^build"] + "dependsOn": ["^build"], + "outputLogs": "new-only" }, "types:check": { "dependsOn": ["^build"],