From 81179852ec100d2a0ad5ab68242a7b2d5be4fe18 Mon Sep 17 00:00:00 2001 From: steveluscher Date: Mon, 13 May 2024 22:58:53 +0000 Subject: [PATCH] Repair Turborepo's cache hash --- turbo.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/turbo.json b/turbo.json index 3f8d2c8e6..378e6327b 100644 --- a/turbo.json +++ b/turbo.json @@ -3,16 +3,17 @@ "pipeline": { "build": { "dependsOn": ["^build"], + "inputs": ["$TURBO_DEFAULT$", "tsconfig.*", "src/**"], "outputs": [".next/**", "build/**", "dist/**", "lib/**"] }, "lint": { - "outputs": [], - "inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"] + "inputs": ["$TURBO_DEFAULT$", "src/**", "test/**"], + "outputs": [] }, "test": { "dependsOn": ["build"], - "outputs": [], - "inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"] + "inputs": ["$TURBO_DEFAULT$", "src/**", "test/**"], + "outputs": [] } } }