-
Notifications
You must be signed in to change notification settings - Fork 5
/
turbo.json
123 lines (123 loc) · 2.72 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
{
"$schema": "https://turborepo.org/schema.json",
"globalDependencies": ["turbo.json"],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "lib/**", "lib-es/**", "build/**"]
},
"lint": {
"outputs": ["lint.json"],
"env": ["CI_OS"]
},
"lint:fix": {
"outputs": []
},
"typecheck": {
"outputs": [],
"dependsOn": ["^build"],
"env": ["CI_OS"]
},
"test": {
"dependsOn": ["build"],
"env": ["CI_OS"],
"outputs": []
},
"start": {
"cache": false,
"dependsOn": ["^build"]
},
"unimported": {
"cache": false
},
"android:apk:local": {
"dependsOn": ["^build"]
},
"android:apk": {
"dependsOn": ["^build"]
},
"ios:local:ipa": {
"dependsOn": ["^build"]
},
"ios:ci:adhoc": {
"dependsOn": ["^build"]
},
"nightly": {
"cache": false,
"dependsOn": ["^build"]
},
"pre-build": {
"cache": false,
"dependsOn": ["^build"]
},
"release": {
"cache": false,
"dependsOn": ["^build"]
},
"watch": {
"cache": false,
"dependsOn": ["^build"]
},
"clean": {
"cache": false
},
"doc": {
"cache": false
},
"web-tools#build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"],
"cache": false
},
"ledger-live-desktop#build": {
"dependsOn": ["^build"],
"cache": false
},
"@ledgerhq/icons-ui#build": {
"dependsOn": ["^build"],
"outputs": ["react/**", "native/**", "reactLegacy/**", "nativeLegacy/**", "index.js"]
},
"@ledgerhq/crypto-icons-ui#build": {
"dependsOn": ["^build"],
"outputs": ["react/**", "native/**", "index.js"]
},
"@ledgerhq/live-common#build": {
"dependsOn": ["^build"],
"outputs": ["lib/**", "lib-es/**"]
},
"@ledgerhq/live-common#typecheck": {
"dependsOn": ["build"],
"env": ["CI_OS"],
"outputs": []
},
"live-mobile#lint": {
"dependsOn": ["^build"],
"env": ["CI_OS"],
"outputs": ["lint.json"]
},
"ledger-live-desktop#lint": {
"dependsOn": ["^build"],
"env": ["CI_OS"],
"outputs": []
},
"ledger-live-desktop#test": {
"dependsOn": ["ledger-live-desktop#build:testing"],
"env": ["CI_OS"],
"outputs": []
},
"ledger-live-desktop#build:testing": {
"cache": false,
"dependsOn": ["^build"]
},
"@ledgerhq/native-ui#typecheck": {
"outputs": [],
"dependsOn": ["build"],
"env": ["CI_OS"]
},
"@ledgerhq/react-ui#typecheck": {
"outputs": [],
"dependsOn": ["build"],
"env": ["CI_OS"]
}
}
}