forked from LedgerHQ/ledger-live
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
104 lines (104 loc) · 2.32 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
{
"$schema": "https://turborepo.org/schema.json",
"baseBranch": "origin/develop",
"globalDependencies": ["turbo.json"],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "lib/**", "lib-es/**", "build/**"]
},
"pack": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "lib/**", "lib-es/**", "build/**"]
},
"lint": {
"outputs": [],
"dependsOn": ["$CI_OS"]
},
"lint:fix": {
"outputs": []
},
"typecheck": {
"outputs": [],
"dependsOn": ["^build", "$CI_OS"]
},
"test": {
"dependsOn": ["lint", "typecheck", "build", "$CI_OS"],
"outputs": []
},
"start": {
"cache": false,
"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
},
"ledger-live-desktop#build": {
"dependsOn": ["^build"],
"cache": false
},
"@ledgerhq/icons-ui#build": {
"dependsOn": ["^build"],
"outputs": ["react/**", "native/**", "index.js"]
},
"@ledgerhq/live-common#build": {
"dependsOn": ["^build"],
"outputs": [
"lib/**",
"lib-es/**",
"src/data/icons/react/**",
"src/data/icons/reactNative/**",
"src/data/flags/react/**",
"src/data/flags/reactNative/**"
]
},
"@ledgerhq/live-common#typecheck": {
"dependsOn": ["build", "$CI_OS"],
"outputs": []
},
"live-mobile#lint": {
"dependsOn": ["^build", "$CI_OS"],
"outputs": []
},
"ledger-live-desktop#lint": {
"dependsOn": ["^build", "$CI_OS"],
"outputs": []
},
"ledger-live-desktop#test": {
"dependsOn": ["ledger-live-desktop#build:testing", "$CI_OS"],
"outputs": []
},
"ledger-live-desktop#build:testing": {
"cache": false,
"dependsOn": ["^build"]
}
}
}