forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrush.json
More file actions
132 lines (131 loc) · 3.89 KB
/
rush.json
File metadata and controls
132 lines (131 loc) · 3.89 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
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
{
"npmVersion": "3.10.9",
"rushMinimumVersion": "1.5.1",
"nodeSupportedVersionRange": ">=4.3.0",
"commonFolder": "common",
"projectFolderMinDepth": 1,
"reviewCategories": [ "libraries", "other" ],
"packageReviewFile": "common/reviews/PackageDependencies.json",
"gitPolicy": {
// Require GitHub scrubbed e-mails
"allowedEmailRegExps": [
"[^@]+@users\\.noreply\\.github\\.com"
],
"sampleEmail": "mrexample@users.noreply.github.com"
},
"projects": [
{
"packageName": "@microsoft/gulp-core-build",
"projectFolder": "gulp-core-build",
"reviewCategory": "libraries",
"shouldPublish": true,
"cyclicDependencyProjects": [
"@microsoft/node-library-build"
]
},
{
"packageName": "@microsoft/gulp-core-build-karma",
"projectFolder": "gulp-core-build-karma",
"reviewCategory": "libraries",
"shouldPublish": true,
"cyclicDependencyProjects": [
"@microsoft/node-library-build"
]
},
{
"packageName": "@microsoft/gulp-core-build-mocha",
"projectFolder": "gulp-core-build-mocha",
"reviewCategory": "libraries",
"shouldPublish": true,
"cyclicDependencyProjects": [
"@microsoft/node-library-build"
]
},
{
"packageName": "@microsoft/gulp-core-build-sass",
"projectFolder": "gulp-core-build-sass",
"reviewCategory": "libraries",
"shouldPublish": true,
"cyclicDependencyProjects": [
"@microsoft/node-library-build"
]
},
{
"packageName": "@microsoft/gulp-core-build-serve",
"projectFolder": "gulp-core-build-serve",
"reviewCategory": "libraries",
"shouldPublish": true,
"cyclicDependencyProjects": [
"@microsoft/node-library-build"
]
},
{
"packageName": "@microsoft/gulp-core-build-typescript",
"projectFolder": "gulp-core-build-typescript",
"reviewCategory": "libraries",
"shouldPublish": true,
"cyclicDependencyProjects": [
"@microsoft/node-library-build"
]
},
{
"packageName": "@microsoft/gulp-core-build-webpack",
"projectFolder": "gulp-core-build-webpack",
"reviewCategory": "libraries",
"shouldPublish": true,
"cyclicDependencyProjects": [
"@microsoft/node-library-build"
]
},
{
"packageName": "@microsoft/package-deps-hash",
"projectFolder": "package-deps-hash",
"reviewCategory": "libraries",
"shouldPublish": true
},
{
"packageName": "@microsoft/node-library-build",
"projectFolder": "node-library-build",
"reviewCategory": "libraries",
"shouldPublish": true
},
{
"packageName": "@microsoft/web-library-build",
"projectFolder": "web-library-build",
"reviewCategory": "libraries",
"shouldPublish": true
},
{
"packageName": "test-web-library-build",
"projectFolder": "test-web-library-build",
"reviewCategory": "other",
"shouldPublish": false
},
{
"packageName": "@microsoft/api-extractor",
"projectFolder": "api-extractor",
"reviewCategory": "libraries",
"shouldPublish": true,
"cyclicDependencyProjects": [
"@microsoft/node-library-build"
]
},
// Rush is published manually for two reasons:
// 1. We need to do proper validation before pushing out a new release
// that potentially could screw up everyone's daily work.
// 2. The "rush" and "rush-lib" packages need to have identical versions,
// which is currently not supported by the automatic publishing system.
{
"packageName": "@microsoft/rush",
"projectFolder": "rush/rush",
"reviewCategory": "libraries",
"shouldPublish": false
},
{
"packageName": "@microsoft/rush-lib",
"projectFolder": "rush/rush-lib",
"reviewCategory": "libraries",
"shouldPublish": false
}
]
}