forked from microsoft/typespec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrush.json
191 lines (190 loc) · 5.69 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/**
* 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.90.0",
"pnpmVersion": "6.32.9",
"ensureConsistentVersions": true,
/**
* Options that are only used when the PNPM package manager is selected
*/
"pnpmOptions": {
"strictPeerDependencies": false
},
"nodeSupportedVersionRange": ">=16.0.0",
"suppressNodeLtsWarning": true,
"projectFolderMinDepth": 1,
"projectFolderMaxDepth": 5,
"gitPolicy": {},
"repository": {
"defaultBranch": "main",
"url": "https://github.com/microsoft/typespec"
},
/**
* Event hooks are customized script actions that Rush executes when specific events occur
*/
"eventHooks": {
/**
* The list of shell commands to run before the Rush installation starts
*/
"preRushInstall": [
// "common/scripts/pre-rush-install.js"
],
/**
* The list of shell commands to run after the Rush installation finishes
*/
"postRushInstall": [],
/**
* The list of shell commands to run before the Rush build command starts
*/
"preRushBuild": [],
/**
* The list of shell commands to run after the Rush build command finishes
*/
"postRushBuild": []
},
"variants": [],
"telemetryEnabled": false,
"projects": [
{
"packageName": "@typespec/compiler",
"projectFolder": "packages/compiler",
"reviewCategory": "production",
"versionPolicyName": "typespec"
},
{
"packageName": "@typespec/samples",
"projectFolder": "packages/samples",
"reviewCategory": "production",
"shouldPublish": false
},
{
// TMLanguage generator not in an @scope because it is neither typespec nor azure-specific.
// Eventually, it should be split off into its own repo
"packageName": "tmlanguage-generator",
"projectFolder": "packages/tmlanguage-generator",
"reviewCategory": "production",
"shouldPublish": true
},
{
// VS Code package can't be in an @scope as it breaks VSIX package
// Eventually, this package should probably be deprecated in favor of publishing to VS marketplace
"packageName": "typespec-vscode",
"projectFolder": "packages/typespec-vscode",
"reviewCategory": "production",
"versionPolicyName": "typespec"
},
{
// VS package not in @scope purely for symmetry with VSCode package
// Eventually this package will also be deprecated in favor or VS marketplace
"packageName": "typespec-vs",
"projectFolder": "packages/typespec-vs",
"reviewCategory": "production",
"versionPolicyName": "typespec"
},
{
"packageName": "@typespec/prettier-plugin-typespec",
"projectFolder": "packages/prettier-plugin-typespec",
"reviewCategory": "production",
"versionPolicyName": "typespec"
},
{
"packageName": "@typespec/rest",
"projectFolder": "packages/rest",
"reviewCategory": "production",
"versionPolicyName": "typespec"
},
{
"packageName": "@typespec/openapi",
"projectFolder": "packages/openapi",
"reviewCategory": "production",
"versionPolicyName": "typespec"
},
{
"packageName": "@typespec/lint",
"projectFolder": "packages/lint",
"reviewCategory": "production",
"versionPolicyName": "typespec"
},
{
"packageName": "@typespec/migrate",
"projectFolder": "packages/migrate",
"reviewCategory": "production",
"versionPolicyName": "typespec"
},
{
"packageName": "@typespec/library-linter",
"projectFolder": "packages/library-linter",
"reviewCategory": "production",
"versionPolicyName": "typespec"
},
{
"packageName": "@typespec/eslint-plugin",
"projectFolder": "packages/eslint-plugin-typespec",
"reviewCategory": "production",
"versionPolicyName": "typespec"
},
{
"packageName": "@typespec/openapi3",
"projectFolder": "packages/openapi3",
"reviewCategory": "production",
"versionPolicyName": "typespec"
},
{
"packageName": "@typespec/html-program-viewer",
"projectFolder": "packages/html-program-viewer",
"reviewCategory": "production",
"versionPolicyName": "typespec"
},
{
"packageName": "@typespec/versioning",
"projectFolder": "packages/versioning",
"reviewCategory": "production",
"versionPolicyName": "typespec"
},
{
"packageName": "@typespec/eslint-config-typespec",
"projectFolder": "packages/eslint-config-typespec",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "@typespec/internal-build-utils",
"projectFolder": "packages/internal-build-utils",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "@typespec/spec",
"projectFolder": "packages/spec",
"reviewCategory": "production",
"shouldPublish": false
},
{
"packageName": "@typespec/playground",
"projectFolder": "packages/playground",
"reviewCategory": "production",
"shouldPublish": false
},
{
"packageName": "@typespec/website",
"projectFolder": "packages/website",
"reviewCategory": "production",
"shouldPublish": false
},
{
"packageName": "@typespec/bundler",
"projectFolder": "packages/bundler",
"reviewCategory": "production",
"shouldPublish": false
},
{
"packageName": "@typespec/ref-doc",
"projectFolder": "packages/ref-doc",
"reviewCategory": "production",
"shouldPublish": false
}
]
}