From 34936a03124c5747baca8252924a229926d69cf1 Mon Sep 17 00:00:00 2001 From: iCrawl Date: Sat, 2 Mar 2024 22:21:48 +0100 Subject: [PATCH] chore: never cache doc generation --- turbo.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/turbo.json b/turbo.json index 612ee4a52..1ae55f96b 100644 --- a/turbo.json +++ b/turbo.json @@ -175,10 +175,12 @@ "docs/**", "!docs/docs.json", "!docs/docs.api.json", + "!docs/*/split/**", "tsconfig.docs.json" ], - "outputs": ["dist-docs/**", "docs/docs.json", "docs/docs.api.json"], - "outputMode": "errors-only" + "outputs": ["dist-docs/**", "docs/docs.json", "docs/docs.api.json", "docs/*/split/**"], + "outputMode": "errors-only", + "cache": false }, "changelog": { "inputs": ["cliff.toml"],