From b672de2515b2e1e1a83ebfd766a12beec5ca24ce Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Thu, 27 Nov 2025 17:46:44 -0800 Subject: [PATCH] Fix webamp-modern build outputs in turbo.json (#1320) The webamp-modern#build task had outputs set to an empty array, which meant turbo wouldn't cache/restore the build directory. This caused the deploy script to fail when the mv command couldn't find the build directory on cache hits. Changed outputs from [] to ["build/**"] to properly cache and restore the build output. --- turbo.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/turbo.json b/turbo.json index 8fbdc85f..b21de061 100644 --- a/turbo.json +++ b/turbo.json @@ -48,7 +48,7 @@ "outputs": [] }, "webamp-modern#build": { - "outputs": [] + "outputs": ["build/**"] }, "webamp-modern#test": { "outputs": []