-
Notifications
You must be signed in to change notification settings - Fork 23
/
turbo.json
38 lines (38 loc) · 933 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
{
"$schema": "https://turborepo.org/schema.json",
// Next.js manifests contain full path names which are platform-dependent,
// so we can't share builds between Vercel deployments and Github Actions
"globalEnv": ["PLATFORM"],
"tasks": {
// dev target for pre-push checks
"build:ts": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "*.tsbuildinfo"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist", "build", ".next", "*.tsbuildinfo", "!.next/cache"]
},
"build:storybook": {
"dependsOn": ["build"],
"outputs": ["storybook-static"]
},
"lint": {},
"eslint": {},
"test": {
"dependsOn": ["build"]
},
"coverage": {
"dependsOn": ["build"],
"outputs": ["coverage"]
},
"dev": {
"cache": false,
"persistent": true,
"dependsOn": ["^build"]
},
"format": {
"cache": false
}
}
}