-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathturbo.json
36 lines (36 loc) · 962 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
33
34
35
36
{
"$schema": "https://turbo.build/schema.json",
"ui": "stream",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "build/**"],
"env": ["*"],
"inputs": [
"$TURBO_DEFAULT$",
".env",
".env.local",
".env.test",
".env.development",
".env.production"
]
},
"test": {
"dependsOn": ["^build", "^test"]
},
"test:watch": {
// The only reason this task is specifying the build task as a dependency is to
// avoid race conditions for first time runs when first cloning the repo.
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"dev": {
// The only reason this task is specifying the build task as a dependency is to
// avoid race conditions for first time runs when first cloning the repo.
"dependsOn": ["^build"],
"cache": false,
"persistent": true
}
}
}