forked from nhost/nhost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
60 lines (60 loc) · 1.37 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
{
"$schema": "https://turborepo.org/schema.json",
"baseBranch": "origin/main",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "umd/**", "build/**", ".next/**"]
},
"@nhost-examples/react-apollo#build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"],
"env": ["VITE_NHOST_SUBDOMAIN", "VITE_NHOST_REGION"]
},
"@nhost-examples/vue-apollo#build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"],
"env": ["VITE_NHOST_SUBDOMAIN", "VITE_NHOST_REGION"]
},
"@nhost/docs#build": {
"cache": false
},
"@nhost/dashboard#build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**"],
"env": [
"NEXT_TELEMETRY_DISABLED",
"NEXT_PUBLIC_NHOST_PLATFORM",
"NEXT_PUBLIC_NHOST_MIGRATIONS_URL",
"NEXT_PUBLIC_NHOST_HASURA_URL",
"NEXT_PUBLIC_ENV"
]
},
"@nhost/sync-versions#start": {
"cache": false
},
"test": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"]
},
"e2e": {
"dependsOn": ["^build"],
"outputs": []
},
"dev": {
"cache": false
},
"docgen": {
"cache": false,
"dependsOn": ["^build"]
},
"lint": {
"dependsOn": ["^build"],
"outputs": []
},
"lint:fix": {
"outputs": []
},
"start": {}
}
}