forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathturbo.json
More file actions
31 lines (31 loc) · 889 Bytes
/
turbo.json
File metadata and controls
31 lines (31 loc) · 889 Bytes
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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["package.json"],
"globalEnv": ["NODE_ENV"],
"globalPassThroughEnv": ["CI"],
"ui": "tui",
"tasks": {
"check-types": {
"dependsOn": ["build"]
},
"@elizaos/agent#check-types": {
"dependsOn": ["@elizaos/plugin-direct#build", "@elizaos/core#build"]
},
"build": {
"outputs": ["dist/**"],
"dependsOn": ["^@elizaos/core#build"],
"outputLogs": "hash-only"
},
"@elizaos/client-direct#build": {
"outputs": ["dist/**"],
"dependsOn": ["@elizaos/plugin-image-generation#build"]
},
"@elizaos/plugin-evm#build": {
"outputs": ["dist/**"]
},
"dev": {
"persistent": true,
"cache": false
}
}
}