From ba0c85fd5988bfc2c57a9a9bb44d61a300a8b145 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=20Rozs=C3=ADval?= Date: Mon, 6 Nov 2023 20:57:31 +0100 Subject: [PATCH] chore: make turbo glob patterns deep --- turbo.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/turbo.json b/turbo.json index 1585205..203373f 100644 --- a/turbo.json +++ b/turbo.json @@ -3,7 +3,7 @@ "pipeline": { "build": { "dependsOn": ["^build"], - "outputs": ["dist/**", "tsconfig.build.tsbuildinfo"] + "outputs": ["dist/**/*", "tsconfig.build.tsbuildinfo"] }, "cleanup": { "cache": false @@ -31,7 +31,7 @@ }, "test": { "dependsOn": ["^build"], - "outputs": ["coverage/**"] + "outputs": ["coverage/**/*"] }, "ts": { "dependsOn": ["^build"],