From 46d46c4470e2faa991322a2599218909071e5fc0 Mon Sep 17 00:00:00 2001 From: Mikkel Laursen Date: Mon, 22 Apr 2024 16:35:41 -0400 Subject: [PATCH] build(docs): maybe fix vercel and turbo caching issue --- turbo.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/turbo.json b/turbo.json index 812b941065..13b9600b86 100644 --- a/turbo.json +++ b/turbo.json @@ -3,12 +3,17 @@ "globalDependencies": ["**/.env.*local"], "pipeline": { "@react-md/material-icons#build": { - "cache": false, "outputs": ["*.d.ts", "*.js"] }, "build": { "dependsOn": ["^build"], - "outputs": ["dist/**", "types/**", ".next/**", "!.next/cache/**"] + "outputs": [ + "dist/**", + "types/**", + ".next/**", + "src/generated/**", + "!.next/cache/**" + ] }, "test": { "outputs": ["coverage/**"],