-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathturbo.json
99 lines (99 loc) · 2.12 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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [
".env*",
"config/database.config.js",
"packages/eslint-config-dg/eslint.config.js",
".node-version",
".npmrc",
".sequelizerc",
".pretterrc.js",
".pretterignore",
"codegen.ts",
"next.config.js",
"tsconfig.json",
".env.development.local",
".env.strava-webhooks-prod.local",
".env.production.local",
".env"
],
"globalEnv": [
"ANALYZE",
"CONTENTFUL_ACCESS_TOKEN",
"CONTENTFUL_SPACE_ID",
"CONTENTFUL_SPACE_ID",
"DATABASE_URL",
"GITHUB_AUTHENTICATION_TOKEN",
"GITHUB_TOKEN",
"NEXT_PUBLIC_APP_VERSION",
"NEXT_PUBLIC_MAPBOX_TOKEN",
"NEXT_PUBLIC_SENTRY_DSN",
"NODE_ENV",
"SENTRY_AUTH_TOKEN",
"SPOTIFY_CLIENT_ID",
"SPOTIFY_CLIENT_SECRET",
"STRAVA_CLIENT_ID",
"STRAVA_CLIENT_SECRET",
"STRAVA_TOKEN_NAME",
"STRAVA_VERIFY_TOKEN",
"WEBHOOK_CALLBACK_URL"
],
"tasks": {
"topo": {
"dependsOn": ["^topo"]
},
"dev": {
"dependsOn": ["topo"],
"inputs": ["apps/**/*", "packages/**/*"],
"cache": false,
"persistent": true
},
"connect": {
"inputs": ["apps/**/*", "packages/**/*"],
"cache": false,
"persistent": true
},
"build": {
"dependsOn": ["^build", "topo", "lint", "lint:types", "format"],
"outputs": [".next/**", "!.next/cache/**"]
},
"build:analyze": {
"dependsOn": ["^build", "topo"],
"outputs": [".next/**"]
},
"build:serve": {
"dependsOn": ["build"],
"cache": false
},
"format": {
"dependsOn": ["topo"],
"outputLogs": "new-only"
},
"lint": {
"outputs": [],
"dependsOn": ["topo"],
"outputLogs": "new-only"
},
"lint:types": {
"outputs": [],
"dependsOn": ["topo"],
"outputLogs": "new-only"
},
"codegen": {
"cache": false,
"inputs": ["apps/web/src/api/server/*"]
},
"webhook": {
"cache": false
},
"clean": {
"cache": false
},
"db": {
"cache": false
},
"release": {
"cache": false
}
}
}