forked from Azure/autorest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rush.json
163 lines (163 loc) · 4.64 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush.schema.json",
"rushVersion": "5.38.0",
"pnpmVersion": "5.16.0",
"pnpmOptions": {},
"nodeSupportedVersionRange": ">=12.0.0",
// Disabling this during migration of other repos as it is causing issues.
// This needs to be enabled again. https://github.com/Azure/autorest/issues/3807
"ensureConsistentVersions": true,
"projectFolderMinDepth": 3,
"projectFolderMaxDepth": 3,
"repository": {
"defaultBranch": "main",
"url": "https://github.com/Azure/autorest"
},
"eventHooks": {
"preRushInstall": [],
"postRushInstall": [],
"preRushBuild": [],
"postRushBuild": []
},
"telemetryEnabled": false,
"projects": [
{
"packageName": "@autorest/core",
"projectFolder": "packages/extensions/core",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "autorest",
"projectFolder": "packages/apps/autorest",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "md-mock-api",
"projectFolder": "packages/tools/md-mock-api",
"reviewCategory": "production",
"shouldPublish": false
},
{
"packageName": "@autorest/compare",
"projectFolder": "packages/tools/compare",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "@autorest/fixer",
"projectFolder": "packages/tools/fixer",
"reviewCategory": "production",
"shouldPublish": false
},
{
"packageName": "@autorest/schemas",
"projectFolder": "packages/libs/autorest-schemas",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "@autorest/codemodel",
"projectFolder": "packages/libs/codemodel",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "@azure-tools/codegen",
"projectFolder": "packages/libs/codegen",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "@azure-tools/oai2-to-oai3",
"projectFolder": "packages/libs/oai2-to-oai3",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "@azure-tools/deduplication",
"projectFolder": "packages/libs/deduplication",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "@azure-tools/datastore",
"projectFolder": "packages/libs/datastore",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "@azure-tools/openapi",
"projectFolder": "packages/libs/openapi",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "@autorest/common",
"projectFolder": "packages/libs/common",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "@autorest/configuration",
"projectFolder": "packages/libs/configuration",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "@autorest/test-utils",
"projectFolder": "packages/testing/test-utils",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "@autorest/test-public-packages",
"projectFolder": "packages/testing/test-public-packages",
"reviewCategory": "production",
"shouldPublish": false
},
{
"packageName": "@azure-tools/extension",
"projectFolder": "packages/libs/extension",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "@autorest/extension-base",
"projectFolder": "packages/libs/extension-base",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "@azure-tools/json",
"projectFolder": "packages/libs/json",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "@azure-tools/yaml",
"projectFolder": "packages/libs/yaml",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "@azure-tools/jsonschema",
"projectFolder": "packages/libs/jsonschema",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "@autorest/modelerfour",
"projectFolder": "packages/extensions/modelerfour",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "@autorest/cadl",
"projectFolder": "packages/extensions/cadl",
"reviewCategory": "production",
"shouldPublish": true
}
]
}