-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathturbo.json
More file actions
105 lines (105 loc) · 2.4 KB
/
turbo.json
File metadata and controls
105 lines (105 loc) · 2.4 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"$schema": "https://turborepo.org/schema.json",
"globalDependencies": ["**/.env"],
"ui": "tui",
"globalEnv": [
"CRON_SECRET",
"DATABASE_URL",
"ENABLE_EXPERIMENTAL_COREPACK",
"EVE_CLIENT_ID",
"EVE_CLIENT_SECRET",
"EXPO_ROUTER_APP_ROOT",
"INNGEST_EVENT_KEY",
"INNGEST_SIGNING_KEY",
"LOGTAIL_SOURCE_TOKEN",
"NEXTAUTH_SECRET",
"NEXTAUTH_URL",
"NEXT_PUBLIC_DISCORD_INVITE_LINK",
"NEXT_PUBLIC_GOOGLE_TAG_ID",
"NEXT_PUBLIC_UMAMI_WEBSITE_ID",
"REDIS_URL",
"SENTRY_AUTH_TOKEN",
"SENTRY_ORG",
"SENTRY_PROJECT",
"SKIP_BUILD_STATIC_GENERATION",
"SKIP_ENV_VALIDATION"
],
"globalPassThroughEnv": [
"NODE_ENV",
"CI",
"VERCEL",
"VERCEL_URL",
"npm_lifecycle_event"
],
"tasks": {
"topo": {
"dependsOn": ["^topo"]
},
"db:generate": {
"inputs": ["prisma/schema.prisma"],
"cache": false
},
"db:generate:watch": {
"inputs": ["prisma/schema.prisma"],
"cache": false
},
"db:push": {
"inputs": ["prisma/schema.prisma"],
"cache": false
},
"dev": {
"dependsOn": ["^db:generate", "kubb:generate"],
"persistent": true,
"cache": false
},
"build": {
"dependsOn": ["^build", "^db:generate", "kubb:generate"],
"inputs": ["src/**", "package.json", "tsconfig.json"],
"outputs": [
".next/**",
"!.next/cache/**",
"next-env.d.ts",
".expo/**",
"dist/**"
]
},
"format": {
"outputs": ["node_modules/.cache/.prettiercache"],
"outputLogs": "new-only"
},
"lint": {
"dependsOn": ["^topo"],
"inputs": [
"src/**",
"package.json",
"tsconfig.json",
".eslintrc*",
"eslint.config.*"
],
"outputs": ["node_modules/.cache/.eslintcache"]
},
"lint:fix": {},
"analyze": {},
"clean": {
"cache": false
},
"//#clean": {
"cache": false
},
"kubb:generate": {
"dependsOn": ["^build", "^db:generate"],
"inputs": ["kubb.config.ts", "swagger.json"],
"outputs": ["src/generated/**", "src/build-data.json"]
},
"test": {},
"test:watch": {
"cache": false,
"persistent": true
},
"type-check": {
"dependsOn": ["^topo"],
"inputs": ["src/**", "package.json", "tsconfig.json"],
"outputs": ["node_modules/.cache/tsbuildinfo.json"]
}
}
}