forked from MyArtverse-Project/MyArtverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
33 lines (33 loc) · 850 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",
"globalDotEnv": [".env", ".env.local"],
"globalEnv": [
"NODE_ENV",
"UMAMI_ID",
"MS_CLARITY_ID",
"PAYPAL_CLIENT_SECRET",
"STRIPE_SECRET_KEY",
"NEXT_PUBLIC_VERCEL_GIT_COMMIT_SHA",
"NEXT_PUBLIC_PAYPAL_CLIENT_ID",
"NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY"
],
"pipeline": {
"dev": {
"dotEnv": [".env.development.local", ".env.development", ".env"],
"cache": false,
"persistent": true
},
"build": {
"dotEnv": [".env.production.local", ".env.production", ".env"],
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"deploy": {
"dotEnv": [".env.production.local", ".env.production", ".env"],
"dependsOn": ["lint", "build"]
}
}
}