-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
turbo.json
45 lines (45 loc) · 889 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
37
38
39
40
41
42
43
44
45
{
"$schema": "https://turbo.build/schema.json",
"ui": "stream",
"globalEnv": [],
"globalPassThroughEnv": [
"NODE_ENV",
"CI",
"GITHUB_TOKEN",
"NODE_ENV",
"VERCEL",
"VERCEL_ENV",
"VERCEL_URL",
"VERCEL_TOKEN",
"VERCEL_ORG_ID",
"VERCEL_PROJECT_ID",
"VERCEL_GIT_COMMIT_REF",
"npm_lifecycle_event"
],
"globalDependencies": [".env", ".secrets", "pnpm-lock.yaml"],
"tasks": {
"lint": {
"dependsOn": ["^lint"]
},
"format": {
"dependsOn": ["^format"],
"outputLogs": "new-only"
},
"test": {
"cache": false,
"inputs": ["src/**", "tests/**", ".env.test"]
},
"test:unit": {},
"test:unit:coverage": {
"outputs": ["coverage/**"]
},
"test:watch": {
"cache": false,
"persistent": true
},
"build": {},
"clean": {
"cache": false
}
}
}