-
Notifications
You must be signed in to change notification settings - Fork 0
/
rush.json
131 lines (131 loc) · 3.19 KB
/
rush.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
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush.schema.json",
"rushVersion": "5.92.0",
"pnpmVersion": "7.25.1",
"nodeSupportedVersionRange": "16.16.0",
"suppressNodeLtsWarning": false,
"ensureConsistentVersions": true,
"projectFolderMinDepth": 2,
"projectFolderMaxDepth": 2,
"allowMostlyStandardPackageNames": false,
"gitPolicy": {
"tagSeparator": "@"
},
"repository": {
"url": "https://github.com/cosplay-pi/cosplay-pi-monorepo",
"defaultBranch": "main",
"defaultRemote": "origin"
},
"telemetryEnabled": false,
"allowedProjectTags": [
"tools",
"native",
"web"
],
"projects": [
{
"packageName": "cosplay-pi-device-dev-simulator",
"projectFolder": "packages/cosplay-pi-device-dev-simulator",
"tags": [
"native"
]
},
{
"packageName": "cosplay-pi-device-hub-client",
"projectFolder": "packages/cosplay-pi-device-hub-client",
"shouldPublish": true,
"tags": [
"native"
]
},
{
"packageName": "cosplay-pi-device-runtime-client",
"projectFolder": "packages/cosplay-pi-device-runtime-client",
"shouldPublish": true,
"tags": [
"native"
]
},
{
"packageName": "cosplay-pi-device-runtime-example-module",
"projectFolder": "packages/cosplay-pi-device-runtime-example-module",
"tags": [
"native"
]
},
{
"packageName": "cosplay-pi-device-runtime-module",
"projectFolder": "packages/cosplay-pi-device-runtime-module",
"shouldPublish": true,
"tags": [
"native"
]
},
{
"packageName": "cosplay-pi-hub-backend",
"projectFolder": "packages/cosplay-pi-hub-backend",
"tags": [
"native"
]
},
{
"packageName": "cosplay-pi-hub-backend-client",
"projectFolder": "packages/cosplay-pi-hub-backend-client",
"shouldPublish": true,
"tags": [
"native"
]
},
{
"packageName": "cosplay-pi-hub-backend-protocol",
"projectFolder": "packages/cosplay-pi-hub-backend-protocol",
"shouldPublish": true,
"tags": [
"native"
]
},
{
"packageName": "cosplay-pi-hub-frontend",
"projectFolder": "packages/cosplay-pi-hub-frontend",
"tags": [
"web"
]
},
{
"packageName": "cosplay-pi-native-package-tools",
"projectFolder": "packages/cosplay-pi-native-package-tools",
"tags": [
"tools"
]
},
{
"packageName": "cosplay-pi-package-tools",
"projectFolder": "packages/cosplay-pi-package-tools",
"tags": [
"tools"
]
},
{
"packageName": "cosplay-pi-tk-greeter",
"projectFolder": "packages/cosplay-pi-tk-greeter",
"shouldPublish": true,
"tags": [
"native"
]
},
{
"packageName": "cosplay-pi-tk-voice-modulator",
"projectFolder": "packages/cosplay-pi-tk-voice-modulator",
"shouldPublish": true,
"tags": [
"native"
]
},
{
"packageName": "cosplay-pi-ts-core",
"projectFolder": "packages/cosplay-pi-ts-core",
"shouldPublish": true,
"tags": []
}
]
}