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.
This commit is contained in:
Jordan Eldredge 2025-11-27 17:46:44 -08:00 committed by GitHub
parent 014c8eab28
commit b672de2515
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -48,7 +48,7 @@
"outputs": []
},
"webamp-modern#build": {
"outputs": []
"outputs": ["build/**"]
},
"webamp-modern#test": {
"outputs": []