-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathrush.json
More file actions
73 lines (73 loc) · 1.96 KB
/
rush.json
File metadata and controls
73 lines (73 loc) · 1.96 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
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
/**
* This is the main configuration file for Rush.
* For full documentation, please see https://rushjs.io
*/
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush.schema.json",
"rushVersion": "5.153.2",
"pnpmVersion": "9.15.3",
"nodeSupportedVersionRange": ">=20.0.0 <25.0.0",
"projectFolderMaxDepth": 2,
"gitPolicy": {},
"repository": {
"url": "https://github.com/hcengineering/communication",
"defaultBranch": "main",
"defaultRemote": "origin"
},
"eventHooks": {
"preRushInstall": [],
"postRushInstall": [],
"preRushBuild": [],
"postRushBuild": [],
"preRushx": [],
"postRushx": []
},
"variants": [],
"projects": [
{
"packageName": "@hcengineering/scripts",
"projectFolder": "common/scripts",
"shouldPublish": false
},
{
"packageName": "@hcengineering/communication-types",
"projectFolder": "packages/types",
"shouldPublish": true
},
{
"packageName": "@hcengineering/communication-sdk-types",
"projectFolder": "packages/sdk-types",
"shouldPublish": true
},
{
"packageName": "@hcengineering/communication-shared",
"projectFolder": "packages/shared",
"shouldPublish": true
},
{
"packageName": "@hcengineering/communication-rest-client",
"projectFolder": "packages/rest-client",
"shouldPublish": true
},
{
"packageName": "@hcengineering/communication-cockroach",
"projectFolder": "packages/cockroach",
"shouldPublish": true
},
{
"packageName": "@hcengineering/communication-server",
"projectFolder": "packages/server",
"shouldPublish": true
},
{
"packageName": "@hcengineering/communication-query",
"projectFolder": "packages/query",
"shouldPublish": true
},
{
"packageName": "@hcengineering/communication-client-query",
"projectFolder": "packages/client-query",
"shouldPublish": true
}
]
}