From 0a4a3983f1804d28402416c5d6aa76b413191b34 Mon Sep 17 00:00:00 2001 From: Julien Date: Tue, 6 Jun 2023 18:22:11 +0200 Subject: [PATCH] fix(www): include md generation in build script --- turbo.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/turbo.json b/turbo.json index f15683b3..d1e1156b 100644 --- a/turbo.json +++ b/turbo.json @@ -6,7 +6,7 @@ "outputs": ["dist"] }, "www#build": { - "dependsOn": ["^build"], + "dependsOn": ["^build", "generate-docs"], "env": ["NEXT_PUBLIC_GA_MEASUREMENT_ID"], "outputs": [".next/**", "!.next/cache/**"] },