forked from nhost/nhost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
39 lines (39 loc) · 950 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
34
35
36
37
38
39
{
"$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", "$VITE_NHOST_SUBDOMAIN", "$VITE_NHOST_REGION"],
"outputs": ["dist/**"]
},
"@nhost-examples/vue-apollo#build": {
"dependsOn": ["^build", "$VITE_NHOST_SUBDOMAIN", "$VITE_NHOST_REGION"],
"outputs": ["dist/**"]
},
"@nhost/sync-versions#start": { "cache": false },
"test": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"]
},
"e2e": {
"dependsOn": ["^build"],
"outputs": []
},
"dev": {
"cache": false
},
"docgen": {
"cache": false
},
"lint": {
"dependsOn": ["^build"],
"outputs": []
},
"lint:fix": { "outputs": [] },
"start": {}
}
}