forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
32 lines (32 loc) · 862 Bytes
/
turbo.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"check-types": {
"dependsOn": ["build"]
},
"@ai16z/agent#check-types": {
"dependsOn": [
"@ai16z/plugin-solana#build",
"@ai16z/plugin-direct#build"
]
},
"build": {
"outputs": ["dist/**"],
"dependsOn": ["^@ai16z/eliza#build"]
},
"@ai16z/plugin-solana#build": {
"outputs": ["dist/**"],
"dependsOn": ["@ai16z/plugin-trustdb#build"]
},
"@ai16z/plugin-nft-generation#build": {
"dependsOn": ["@ai16z/plugin-node#build"]
},
"eliza-docs#build": {
"outputs": ["build/**"]
},
"dev": {
"persistent": true,
"cache": false
}
}
}