-
-
Notifications
You must be signed in to change notification settings - Fork 401
Expand file tree
/
Copy pathturbo.json
More file actions
89 lines (89 loc) · 1.97 KB
/
turbo.json
File metadata and controls
89 lines (89 loc) · 1.97 KB
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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"],
"env": [
"CLERK_SECRET_KEY",
"CLERK_WEBHOOK_SECRET",
"FLAGS_SECRET",
"GITHUB_TOKEN",
"KV_REST_API_READ_ONLY_TOKEN",
"KV_REST_API_TOKEN",
"KV_REST_API_URL",
"KV_URL",
"MAILERLITE_API_KEY",
"MAILERLITE_GROUP_IDS",
"NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY",
"NEXT_PUBLIC_OPENPANEL_CLIENT_ID",
"OPENPANEL_SECRET_ID",
"OPENPANEL_CLIENT_SECRET",
"REDIS_URL",
"RSS_FEED_URL",
"SENTRY_AUTH_TOKEN",
"SENTRY_ORG",
"SENTRY_PROJECT",
"STORAGE_KV_REST_API_READ_ONLY_TOKEN",
"STORAGE_KV_REST_API_TOKEN",
"STORAGE_KV_REST_API_URL",
"STORAGE_KV_URL",
"STORAGE_REDIS_URL"
]
},
"clean": {
"cache": false
},
"typecheck": {
"cache": false
},
"lint": {
"cache": false
},
"lint:fix": {
"cache": false
},
"dev": {
"cache": false,
"persistent": true,
"env": ["CLERK_SECRET_KEY", "NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY"]
},
"test": {
"cache": false,
"dependsOn": ["^build"],
"env": ["CLERK_SECRET_KEY", "NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY"]
},
"test:watch": {
"cache": false,
"dependsOn": ["^build"]
},
"test:e2e": {
"cache": false,
"dependsOn": ["^build"]
},
"test:e2e:smoke": {
"cache": false
},
"test:e2e:fast": {
"cache": false
},
"test:e2e:ui": {
"cache": false,
"dependsOn": ["^build"]
},
"test:e2e:debug": {
"cache": false,
"dependsOn": ["^build"]
},
"test:e2e:headed": {
"cache": false
},
"test:install": {
"cache": false
},
"test:related": {
"cache": false
}
}
}