From e9d685d0e6fa8fcf2644d02ed0b2a2acb7024730 Mon Sep 17 00:00:00 2001 From: Tim Diekmann Date: Fri, 9 Aug 2024 01:19:25 +0200 Subject: [PATCH] Add `dist` to build output --- apps/hash-api/turbo.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/hash-api/turbo.json b/apps/hash-api/turbo.json index 1fe7bac1dcb..e2cabb45827 100644 --- a/apps/hash-api/turbo.json +++ b/apps/hash-api/turbo.json @@ -5,6 +5,9 @@ // Outputs of GraphQL generation "outputs": ["./src/**/*.gen.*"], "dependsOn": ["^codegen"] + }, + "build": { + "outputs": ["dist"] } } }