From 3c6a821ad340f7fdfabbc325fae29675a778c85e Mon Sep 17 00:00:00 2001 From: Vladimir Guguiev <1524432+vovacodes@users.noreply.github.com> Date: Mon, 24 Apr 2023 21:18:40 +0200 Subject: [PATCH] chore(monorepo): fix caching for the 'build' task --- turbo.json | 1 + 1 file changed, 1 insertion(+) diff --git a/turbo.json b/turbo.json index 291153b7..7c0c5fce 100644 --- a/turbo.json +++ b/turbo.json @@ -5,6 +5,7 @@ "cache": false }, "build": { + "inputs": ["src/**/*.ts", "src/**/*.tsx", "package.json"], "dependsOn": ["^build", "generate"], "outputs": ["lib/**"] },