From bf5329405fd0f688a0dfe850fc09de32eee4d21d Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Fri, 9 May 2025 07:43:18 +0200 Subject: [PATCH] fix error with missing build --- database/turbo.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/database/turbo.json b/database/turbo.json index ef38daaeb..8339cc11f 100644 --- a/database/turbo.json +++ b/database/turbo.json @@ -14,13 +14,16 @@ "cache": false }, "up": { - "cache": false + "cache": false, + "dependsOn": ["build"] }, "down": { - "cache": false + "cache": false, + "dependsOn": ["build"] }, "reset": { - "cache": false + "cache": false, + "dependsOn": ["build"] } } } \ No newline at end of file