-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathturbo.json
More file actions
36 lines (36 loc) · 831 Bytes
/
turbo.json
File metadata and controls
36 lines (36 loc) · 831 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
32
33
34
35
36
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"lint": {},
"lint:fix": {},
"typecheck": {
"dependsOn": ["^typecheck"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"test": {
"dependsOn": ["build"],
"env": ["GEL_SERVER_BIN", "GEL_DEBUG_SERVER"]
},
"ci:typecheck": {
"dependsOn": [
"@gel/auth-nextjs#typecheck",
"@gel/auth-express#typecheck",
"@gel/auth-remix#typecheck",
"@gel/auth-sveltekit#typecheck",
"@gel/ai#typecheck",
"@gel/vercel-ai-provider#typecheck"
]
},
"ci:test": {
"dependsOn": ["build"],
"env": ["CI", "GEL_SERVER_BIN"]
},
"ci:integration-test": {
"dependsOn": ["build"],
"env": ["CI", "GEL_SERVER_BIN"]
}
}
}