-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
turbo.json
129 lines (129 loc) · 3.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"aetherspace#build": {
"outputs": [
"**/*.d.ts",
"**/*.js"
],
"inputs": [
"**/*.tsx",
"**/*.ts"
]
},
"aetherspace#check-workspaces": {
"dependsOn": ["aetherspace#build"],
"outputs": [
"../@registries/transpiledWorkspaces.generated.js",
"../@registries/workspaceResolutions.generated.js"
],
"inputs": [
"../../apps/next/.env",
"../../features/**/package.json",
"../../features/**/*.tsx",
"../../features/**/*.ts",
"../../packages/**/package.json",
"../../packages/**/*.tsx",
"../../packages/**/*.ts"
]
},
"aetherspace#link-routes": {
"dependsOn": ["aetherspace#build"],
"outputs": ["../../apps/**/app/(generated)/**"],
"inputs": [
"../../features/**/routes/**/*.tsx",
"../../features/**/routes/**/*.ts",
"../../packages/**/routes/**/*.tsx",
"../../packages/**/routes/**/*.ts"
],
"cache": false
},
"aetherspace#collect-assets": {
"dependsOn": ["aetherspace#build"],
"outputs": ["../@registries/assets.generated.js"],
"inputs": ["../../apps/next/public/**"]
},
"aetherspace#collect-icons": {
"dependsOn": ["aetherspace#build"],
"outputs": ["../@registries/icons.generated.js"],
"inputs": [
"../../features/**/icons/registry.tsx",
"../../packages/**/icons/registry.tsx"
]
},
"aetherspace#collect-resolvers": {
"dependsOn": ["aetherspace#build"],
"outputs": ["../@registries/resolvers.generated.js"],
"inputs": [
"../../apps/**/api/**/*.tsx",
"../../apps/**/api/**/*.ts"
]
},
"aetherspace#collect-generators": {
"dependsOn": ["aetherspace#build"],
"outputs": ["../@registries/generators.generated.js"],
"inputs": [
"../../features/**/generators/*.ts",
"../../packages/**/generators/*.ts"
]
},
"aetherspace#documentation-reset": {
"dependsOn": ["aetherspace#build"],
"cache": false
},
"aetherspace#document-components": {
"dependsOn": ["aetherspace#build", "aetherspace#documentation-reset"],
"outputs": ["packages/@registries/docs/"],
"inputs": [
"../../apps/**/*.tsx",
"../../features/**/*.tsx",
"../../packages/**/*.tsx"
]
},
"aetherspace#dev-health-check": {
"dependsOn": ["aetherspace#build"],
"cache": false
},
"aetherspace#schema-test": {
"dependsOn": ["aetherspace#build"]
},
"next-app#dev": {
"dependsOn": ["aetherspace#build"],
"cache": false
},
"expo-app#create-next-manifest": {
"outputs": ["../next/public/**"]
},
"expo-app#ios": {
"dependsOn": ["aetherspace#dev-health-check"],
"cache": false
},
"expo-app#android": {
"dependsOn": ["aetherspace#dev-health-check"],
"cache": false
},
"expo-app#web": {
"dependsOn": ["aetherspace#dev-health-check"],
"cache": false
},
"expo-app#start": {
"dependsOn": ["aetherspace#dev-health-check"],
"cache": false
},
"build": {
"dependsOn": ["^build"],
"outputs": [
".expo/**",
".expo-shared/**",
".next/**"
]
},
"lint": {},
"deploy": {
"dependsOn": ["build"]
},
"dev": {
"cache": false
}
}
}