forked from blockprotocol/blockprotocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
75 lines (75 loc) · 1.84 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
{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"fix:eslint": {
"dependsOn": ["^build"],
"cache": false
},
"lint:eslint": {
"dependsOn": ["^build"],
"outputs": []
},
"lint:tsc": {
"dependsOn": ["^build"],
"outputs": []
},
"test": {
"dependsOn": ["^build"],
"outputs": []
},
"@apps/site#codegen": {
"outputs": ["site-map.json"]
},
"@apps/site#build": {
"dependsOn": ["codegen", "^build"],
"outputs": ["dist/**", ".next/**", "public/schemas/**"]
},
"@blocks/feature-showcase#codegen": {
"dependsOn": ["^build"],
"outputs": ["src/entity-types/**/*.gen.ts"]
},
"@blockprotocol/type-system#build": {
"dependsOn": [],
"outputs": ["dist/**", "wasm/**"]
},
"@blockprotocol/type-system#fix:eslint": {
"dependsOn": ["build"],
"cache": false
},
"@blockprotocol/type-system#lint:eslint": {
"dependsOn": ["build"],
"outputs": []
},
"@blockprotocol/type-system#lint:tsc": {
"dependsOn": ["build"],
"outputs": []
},
"@blockprotocol/type-system#test": {
"dependsOn": ["build"],
"outputs": []
},
"mock-block-dock#codegen": {
"outputs": ["src/version.ts"]
},
"block-template-custom-element#build": {
"dependsOn": ["^build", "codegen"],
"outputs": ["dist/**"]
},
"block-template-custom-element#codegen": {
"dependsOn": ["^build"],
"outputs": ["src/types/generated/**.ts"]
},
"block-template-react#build": {
"dependsOn": ["^build", "codegen"],
"outputs": ["dist/**"]
},
"block-template-react#codegen": {
"dependsOn": ["^build"],
"outputs": ["src/types/generated/**.ts"]
}
}
}