From 08e5015bd544096c2d497932f846b27710b016c6 Mon Sep 17 00:00:00 2001 From: Seth Silesky <5115498+silesky@users.noreply.github.com> Date: Fri, 29 Sep 2023 13:46:45 -0500 Subject: [PATCH] [chore] Tweak turborepo input to ignore test helpers (#960) --- turbo.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/turbo.json b/turbo.json index f4c96f090..5f6bc7651 100644 --- a/turbo.json +++ b/turbo.json @@ -9,7 +9,8 @@ "**/webpack.config*", "**/*.ts", "**/*.tsx", - "!**/__tests__/**" + "!**/__tests__/**", + "!src/**/test-helpers/**" ], "outputs": ["**/dist/**", ".next/**"] },