-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
turbo.json
33 lines (33 loc) · 811 Bytes
/
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
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"biome:check": {
"outputs": [],
"inputs": ["biome.json", "src/**"]
},
"biome:ci": {
"outputs": [],
"inputs": ["biome.json", "src/**"]
},
"type:check": {
"inputs": ["tsconfig.json", "src/**"],
"outputs": ["*.tsbuildinfo"]
},
"build": {
"dependsOn": ["type:check", "biome:ci"],
"outputs": [".next/**", "!.next/cache/**", "public/**"],
"env": [
"NEXT_PUBLIC_UMAMI_WEBSITE_ID",
"NEXT_PUBLIC_UMAMI_SRC",
"SPOTIFY_CLIENT_ID",
"SPOTIFY_CLIENT_SECRET",
"SPOTIFY_REFRESH_TOKEN",
"SHORTENER_HOST_NAME",
"PORTFOLIO_ZONE_URL",
"PORTFOLIO_BUILD_ID",
"DATABASE_URL",
"DIRECT_URL"
]
}
}
}