Skip to content

Commit b5dc977

Browse files
committed
fix(build): add missing cache packages to turbo.json
Added build configurations for cache-browser, cache-dexie, cache-memory, cache-nostr, cache-redis, and cache-sqlite-wasm packages that were missing from turbo.json. All cache packages depend on core#build. This fixes the CI build failure where cache-browser#build was failing.
1 parent 0b605d6 commit b5dc977

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

turbo.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,34 @@
2525
"outputs": ["dist/**"],
2626
"dependsOn": ["core#build"]
2727
},
28+
"cache-browser#build": {
29+
"outputs": ["dist/**"],
30+
"dependsOn": ["core#build"]
31+
},
32+
"cache-dexie#build": {
33+
"outputs": ["dist/**"],
34+
"dependsOn": ["core#build"]
35+
},
36+
"cache-memory#build": {
37+
"outputs": ["dist/**"],
38+
"dependsOn": ["core#build"]
39+
},
40+
"cache-nostr#build": {
41+
"outputs": ["dist/**"],
42+
"dependsOn": ["core#build"]
43+
},
44+
"cache-redis#build": {
45+
"outputs": ["dist/**"],
46+
"dependsOn": ["core#build"]
47+
},
2848
"cache-sqlite#build": {
2949
"outputs": ["dist/**"],
3050
"dependsOn": ["core#build"]
3151
},
52+
"cache-sqlite-wasm#build": {
53+
"outputs": ["dist/**"],
54+
"dependsOn": ["core#build"]
55+
},
3256
"sync#build": {
3357
"outputs": ["dist/**"],
3458
"dependsOn": ["core#build"]

0 commit comments

Comments
 (0)