forked from highlight/highlight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
141 lines (141 loc) · 3.07 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
130
131
132
133
134
135
136
137
138
139
140
141
{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"highlight.run#typegen": {
"dependsOn": [
"rrweb#build",
"@rrweb/types#build",
"@highlight-run/client#typegen"
],
"inputs": ["src/**/*.tsx", "src/**/*.ts", "tsconfig.json"],
"outputs": ["dist/**/*.d.ts"]
},
"highlight.run#build": {
"dependsOn": ["typegen", "@highlight-run/client#build"],
"inputs": ["src/**/*.tsx", "src/**/*.ts", "tsconfig.json"],
"outputs": ["dist/**"]
},
"highlight.io#build": {
"dependsOn": ["^build"],
"outputs": [".next/**"],
"env": ["GRAPHCMS_TOKEN"]
},
"highlight.io#lint": {
"dependsOn": ["^build"]
},
"nextjs#lint": {
"dependsOn": ["^build"]
},
"@highlight-run/cloudflare#build": {
"dependsOn": ["@highlight-run/opentelemetry-sdk-workers#build"],
"outputs": ["dist/**"]
},
"@highlight-run/next#build": {
"dependsOn": [
"@highlight-run/cloudflare#build",
"@highlight-run/node#build",
"@highlight-run/opentelemetry-sdk-workers#build",
"@highlight-run/react#build",
"@highlight-run/sourcemap-uploader#build",
"highlight.run#build"
],
"outputs": ["dist/**"]
},
"codegen": {
"inputs": ["../**/*.gql", "../**/*.graphqls"],
"outputs": ["src/graph/generated/**"]
},
"typegen": {
"dependsOn": ["^typegen"],
"inputs": [
"src/**/*.tsx",
"src/**/*.ts",
"tsconfig.json",
"./**/*.graphqls"
],
"outputs": [
"lib/**",
"es/**",
"dist/**",
"typings/**",
"build/**",
"esm/**"
]
},
"reflame": {
"dependsOn": [],
"cache": false
},
"reflame-build": {
"dependsOn": [],
"cache": false
},
"build": {
"dependsOn": ["codegen", "typegen", "^build"],
"outputs": [
"lib/**",
"es/**",
"dist/**",
"typings/**",
"build/**",
"esm/**"
],
"env": [
"CLICKUP_CLIENT_ID",
"DD_CLIENT_TOKEN",
"DEMO_PROJECT_ID",
"DISCORD_CLIENT_ID",
"GITHUB_CLIENT_ID",
"HEIGHT_CLIENT_ID",
"LINEAR_CLIENT_ID",
"REACT_APP_AUTH_MODE",
"REACT_APP_COMMIT_SHA",
"REACT_APP_FIREBASE_CONFIG_OBJECT",
"REACT_APP_FRONTEND_ORG",
"REACT_APP_FRONTEND_URI",
"REACT_APP_FRONT_INTEGRATION_CLIENT_ID",
"REACT_APP_IN_DOCKER",
"REACT_APP_PRIVATE_GRAPH_URI",
"REACT_APP_PUBLIC_GRAPH_URI",
"REACT_APP_STRIPE_API_PK",
"REACT_APP_VERCEL_INTEGRATION_NAME",
"SLACK_CLIENT_ID",
"MICROSOFT_TEAMS_BOT_ID",
"JIRA_CLIENT_ID",
"GITLAB_CLIENT_ID"
]
},
"dev": {
"dependsOn": ["typegen", "^build", "build"],
"cache": false,
"persistent": true
},
"dev:watch": {
"cache": false,
"persistent": true
},
"enforce-size": {
"dependsOn": ["build"]
},
"lint": {
"outputs": [],
"inputs": ["**/*.ts*"]
},
"test": {
"dependsOn": ["lint", "build", "enforce-size"],
"outputs": [],
"inputs": [
"src/**/*.tsx",
"src/**/*.ts",
"test/**/*.ts",
"test/**/*.tsx"
]
},
"sourcemaps": {
"dependsOn": ["test"],
"env": ["HIGHLIGHT_API_KEY"]
}
},
"globalEnv": ["DOPPLER_TOKEN"],
"globalDependencies": ["package.json", "yarn.lock", "tsconfig.json"]
}