-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathturbo.json
More file actions
101 lines (101 loc) · 2.3 KB
/
turbo.json
File metadata and controls
101 lines (101 loc) · 2.3 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"$schema": "https://turborepo.org/schema.json",
"tasks": {
"build": {
"dependsOn": ["@elizaos/core#build", "^build"],
"env": ["LOG_LEVEL"],
"outputs": ["dist/**"]
},
"@elizaos/core#build": {
"dependsOn": [],
"env": ["LOG_LEVEL"],
"outputs": ["dist/**"],
"inputs": ["src/**", "build.ts", "tsconfig.declarations.json"]
},
"@elizaos/rust#build": {
"dependsOn": [],
"outputs": ["pkg/**", "target/release/**"],
"inputs": ["src/**", "Cargo.toml", "build.sh"]
},
"@elizaos/python#build": {
"dependsOn": [],
"outputs": ["elizaos.egg-info/**"],
"inputs": ["elizaos/**", "pyproject.toml"],
"cache": false
},
"@elizaos/client#build": {
"dependsOn": ["^build"],
"env": ["LOG_LEVEL"],
"outputs": ["dist/**"]
},
"@elizaos/server#build": {
"dependsOn": ["@elizaos/client#build", "^build"],
"env": ["LOG_LEVEL"],
"outputs": ["dist/**"]
},
"lint": {
"outputs": []
},
"@elizaos/interop#lint": {
"outputs": []
},
"lint:check": {
"outputs": []
},
"lint:rust": {
"outputs": []
},
"typecheck": {
"outputs": []
},
"typecheck:rust": {
"outputs": []
},
"lint:python": {
"outputs": []
},
"typecheck:python": {
"outputs": []
},
"format": {
"outputs": []
},
"format:check": {
"outputs": []
},
"start": {
"dependsOn": ["@elizaos/core#build"],
"env": ["LOG_LEVEL"],
"persistent": true
},
"dev": {
"dependsOn": ["@elizaos/core#build"],
"persistent": true
},
"test": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"],
"inputs": ["src/**/*.ts", "src/**/*.js", "__tests__/**/*", "*.test.*", "package.json", "tests/**/*", "python/tests/**/*"],
"cache": false
},
"@elizaos/rust#test": {
"outputs": [],
"inputs": ["src/**", "tests/**"]
},
"@elizaos/python#test": {
"outputs": [],
"inputs": ["elizaos/**", "tests/**"]
},
"migrate": {
"dependsOn": ["@elizaos/core#build"],
"cache": false
},
"migrate:generate": {
"dependsOn": ["@elizaos/core#build"],
"cache": false
},
"clean": {
"cache": false
}
}
}