-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathturbo.json
More file actions
48 lines (48 loc) · 1.14 KB
/
turbo.json
File metadata and controls
48 lines (48 loc) · 1.14 KB
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
{
"$schema": "https://turborepo.org/schema.json",
"globalDependencies": [
"package.json",
"codegen.mts",
"pnpm-lock.yaml",
"tsconfig.json",
"scripts/patch-manifests.js",
"scripts/banner.js",
"scripts/runify.ts",
"patches/*"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"],
"env": ["SENTRY_ORG", "SENTRY_PROJECT", "RELEASE"],
"passThroughEnv": ["SENTRY_AUTH_TOKEN"]
},
"check:build": {
"outputs": [""]
},
"dev:hive": {
"with": [
"//#graphql:generate:watch",
"@hive/server#dev",
"@hive/app#dev",
"@hive/tokens#dev",
"@hive/schema#dev",
"@hive/policy#dev",
"@hive/commerce#dev",
"@hive/cdn-script#dev",
"@hive/workflows#dev",
"@hive/usage#dev",
"@hive/usage-ingestor#dev",
"@graphql-hive/external-composition#example",
"@hive/external-composition-federation-2#dev"
],
"outputs": [""],
"persistent": true,
"cache": false
},
"//#graphql:generate:watch": {
"persistent": true,
"cache": false
}
}
}