generated from juliusmarminge/acme-corp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathturbo.json
72 lines (72 loc) · 1.73 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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env"],
"globalEnv": [
"CI",
"CLOUDFLARE_ANALYTICS_TOKEN",
"CODECOV_TOKEN",
"NODE_ENV",
"SENTRY_AUTH_TOKEN",
"SENTRY_DSN",
"SESSION_SECRET",
"SKIP_ENV_VALIDATION",
"STRIPE_API_KEY",
"STRIPE_WEBHOOK_SECRET",
"VERCEL_ENV",
"VERCEL_URL",
"VERCEL",
"WORKOS_API_KEY",
"WORKOS_CLIENT_ID"
],
"tasks": {
"typecheck": {
"outputs": ["node_modules/.cache/tsbuildinfo.json"]
},
"//#format": {
"outputs": ["node_modules/.cache/.prettiercache"]
},
"format": {
"outputs": ["node_modules/.cache/.prettiercache"]
},
"//#format:fix": {
"outputs": ["node_modules/.cache/.prettiercache"],
"cache": false
},
"format:fix": {
"outputs": ["node_modules/.cache/.prettiercache"],
"cache": false
},
"//#lint:fix-repo": {
"outputs": ["node_modules/.cache/.eslintcache"]
},
"lint": {
"outputs": ["node_modules/.cache/.eslintcache"]
},
"//#lint:repo": {
"outputs": ["node_modules/.cache/.eslintcache"],
"cache": false
},
"lint:fix": {
"outputs": ["node_modules/.cache/.eslintcache"],
"cache": false
},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true,
"inputs": ["$TURBO_DEFAULT$", ".env.development.local", ".env.local", ".env.development", ".env"]
},
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env.production.local", ".env.local", ".env.production", ".env"],
"outputs": ["dist/**", "build/**"]
},
"clean": {
"cache": false
},
"//#clean": {
"cache": false
}
},
"ui": "tui"
}