From 2349efd40885b8366d96094f98a202f3c2fa4345 Mon Sep 17 00:00:00 2001 From: psteinroe Date: Sat, 9 Nov 2024 22:58:15 +0100 Subject: [PATCH] fix: add missing dependency to turbo task definition --- turbo.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/turbo.json b/turbo.json index c6705be3..f671ca28 100644 --- a/turbo.json +++ b/turbo.json @@ -7,8 +7,8 @@ "outputs": ["dist/**", ".next/**"] }, "test": { - "outputs": ["coverage/**"], - "dependsOn": [] + "dependsOn": ["^build"], + "outputs": ["coverage/**"] }, "clean": { "outputs": []