mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 02:15:01 +00:00
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.
This commit is contained in:
parent
014c8eab28
commit
8205effbb0
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@
|
|||
"outputs": []
|
||||
},
|
||||
"webamp-modern#build": {
|
||||
"outputs": []
|
||||
"outputs": ["build/**"]
|
||||
},
|
||||
"webamp-modern#test": {
|
||||
"outputs": []
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue