Skip to content

Commit 5159182

Browse files
committed
Fix webamp-modern build outputs in turbo.json
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.
1 parent 0e5c3ef commit 5159182

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

turbo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"outputs": []
4949
},
5050
"webamp-modern#build": {
51-
"outputs": []
51+
"outputs": ["build/**"]
5252
},
5353
"webamp-modern#test": {
5454
"outputs": []

0 commit comments

Comments
 (0)