From c1bd66a82c63d5939ed2b1466f955a8f30ad2395 Mon Sep 17 00:00:00 2001 From: Miodec Date: Fri, 26 Jul 2024 18:02:00 +0200 Subject: [PATCH] fix(dev): missing outputs prop causing cached build to not output files --- turbo.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/turbo.json b/turbo.json index a77ecd8e8..b844759cb 100644 --- a/turbo.json +++ b/turbo.json @@ -28,7 +28,8 @@ }, "@monkeytype/frontend#build": { "dependsOn": ["^build"], - "env": ["BACKEND_URL", "RECAPTCHA_SITE_KEY"] + "env": ["BACKEND_URL", "RECAPTCHA_SITE_KEY"], + "outputs": ["dist/**"] }, "@monkeytype/frontend#dev": { "dependsOn": ["^build"],