-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathturbo.json
98 lines (98 loc) · 2.44 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
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
{
"$schema": "https://turborepo.org/schema.json",
"daemon": false,
"globalDependencies": [".env.development", "tsconfig-base.json", "pnpm-lock.yaml"],
"globalEnv": [
"DATABASE_URL",
"IMAGE_API",
"IMAGE_API_TOKEN",
"IMAGE_API_ACCOUNT_IDENTIFIER",
"IS_CI",
"SEED_DEV"
],
"tasks": {
"@cloudkit/web#dev": {
"cache": false,
"persistent": true,
"dependsOn": ["@cloudkit/swagger-ui#sync", "@cloudkit/db-schema#push"],
"passThroughEnv": ["DATABASE_URL"]
},
"@cloudkit/web#build": {
"cache": false,
"persistent": true,
"dependsOn": ["@cloudkit/db-schema#generate", "@cloudkit/swagger-ui#sync"],
"passThroughEnv": ["DATABASE_URL"]
},
"@cloudkit/styleguide#build": {
"cache": false,
"persistent": true,
"dependsOn": ["@cloudkit/web#sync", "@cloudkit/swagger-ui#sync"]
},
"@cloudkit/styleguide#dev": {
"cache": false,
"persistent": true,
"dependsOn": ["@cloudkit/web#sync", "@cloudkit/swagger-ui#sync"]
},
"@cloudkit/swagger-ui#dev": {
"cache": false,
"persistent": true,
"dependsOn": ["@cloudkit/service-contract#build"]
},
"@cloudkit/db-schema#push": {
"cache": false,
"dependsOn": ["@cloudkit/api-mocks#start", "@cloudkit/service-contract#build"]
},
"@cloudkit/db-schema#generate": {
"cache": false,
"dependsOn": []
},
"@cloudkit/api-mocks#start": {
"cache": false,
"dependsOn": []
},
"@cloudkit/web#check": {
"cache": false,
"dependsOn": ["@cloudkit/db-schema#generate"]
},
"@cloudkit/service-contract#build": {
"outputs": ["./dist"],
"inputs": ["./src/index.ts", "./src/models.ts"],
"dependsOn": ["@cloudkit/db-schema#generate"]
},
"@cloudkit/swagger-ui#build": {
"outputs": ["./svelte-kit"],
"dependsOn": ["@cloudkit/service-contract#build"]
},
"@cloudkit/web#sync": {
"outputs": ["./.svelte-kit"],
"dependsOn": []
},
"@cloudkit/swagger-ui#sync": {
"cache": false,
"outputs": ["./svelte-kit"]
},
"lint": {
"dependsOn": ["@cloudkit/swagger-ui#sync", "@cloudkit/web#sync"]
},
"check": {
"dependsOn": [
"@cloudkit/service-contract#build",
"@cloudkit/swagger-ui#sync",
"@cloudkit/web#sync"
],
"cache": false
},
"test": {
"cache": false,
"dependsOn": ["@cloudkit/swagger-ui#sync", "@cloudkit/web#sync"]
},
"sync": {
"cache": false,
"dependsOn": ["@cloudkit/db-schema#generate"]
},
"build": {
"cache": false,
"dependsOn": ["@cloudkit/swagger-ui#sync", "@cloudkit/web#sync"]
}
}
}