-
Notifications
You must be signed in to change notification settings - Fork 5
/
turbo.json
101 lines (101 loc) · 2.16 KB
/
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
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",
"globalDependencies": ["pnpm-workspace.yaml"],
"globalPassThroughEnv": [
"*_TOKEN",
"CI",
"IS_*",
"NEXT_PUBLIC_*",
"NODE_ENV",
"NOTION_*",
"OG_*",
"OVERRIDE_CACHE",
"REDIS_*",
"SPOTIFY_*",
"UPSTASH_*",
"VERCEL_*"
],
"tasks": {
"//#format": {
"dependsOn": [],
"inputs": [
"*.cjs",
"*.js",
"*.jsx",
"*.json",
"*.md",
"*.mjs",
"*.ts",
"*.tsx"
]
},
"build": {
"dependsOn": ["^build"],
"inputs": ["src/**", "*.cjs", "*.js", "*.mjs", "tsconfig.json"],
"outputs": [".cache/**", ".next/**", "!.next/cache/**"]
},
"build#jeromefitzgerald.com": {
"dependsOn": ["^build"],
"env": ["VERCEL_ENV"],
"inputs": [
"src/**",
"*.cjs",
"*.js",
"*.mjs",
"tsconfig.json",
"tsconfig.*.json",
"vercel.json"
],
"outputs": [".cache/**", ".next/**", "!.next/cache/**"]
},
"clean": {
"cache": false
},
"dev": {
"cache": false
},
"format": {
"cache": false,
"dependsOn": ["^//#format"]
},
"format:lint": {
"cache": false,
"dependsOn": ["^//#format"]
},
"lhci": {
"dependsOn": ["^build"],
"inputs": ["src/**/*.ts", "src/**/*.tsx"],
"outputs": [".lighthouseci/**"]
},
"lint": {
"dependsOn": ["^lint"],
"inputs": ["src/**", "*.cjs", "*.js", "*.mjs", "vercel.json"]
},
"semantic-release:mono": {
"cache": false,
"dependsOn": ["lint"]
},
"start": {
"cache": false
},
"storybook:dev": {
"cache": false,
"dependsOn": ["^build"],
"persistent": true
},
"storybook:build": {
"dependsOn": ["^build"],
"inputs": [".storybook/**", "src/**"],
"outputs": ["storybook-static/**"]
},
"test:e2e": {
"dependsOn": ["^build", "^jeromefitzgerald.com#build"],
"inputs": ["src/e2e/**"],
"outputs": ["e2e-report/**", "e2e-results/**"]
},
"test:unit": {
"dependsOn": ["^build"]
}
},
"ui": "stream"
}