forked from microsoft/fluentui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rush.json
51 lines (51 loc) · 1.28 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
{
"npmVersion": "3.10.9",
"rushMinimumVersion": "2.5.0",
"nodeSupportedVersionRange": ">=6.9.0 <8.0.0",
"commonFolder": "common",
"projectFolderMinDepth": 1,
"projectFolderMaxDepth": 999,
"projects": [
{
"packageName": "office-ui-fabric-react",
"projectFolder": "packages/office-ui-fabric-react",
"shouldPublish": true
},
{
"packageName": "@uifabric/utilities",
"projectFolder": "packages/utilities",
"shouldPublish": true
},
{
"packageName": "@uifabric/example-app-base",
"projectFolder": "packages/example-app-base",
"shouldPublish": true,
"cyclicDependencyProjects": [
"office-ui-fabric-react"
]
},
{
"packageName": "@uifabric/styling",
"projectFolder": "packages/styling",
"shouldPublish": true,
"cyclicDependencyProjects": [
"office-ui-fabric-react"
]
},
{
"packageName": "@uifabric/example-component",
"projectFolder": "packages/example-component",
"shouldPublish": false
},
{
"packageName": "todo-app",
"projectFolder": "apps/todo-app",
"shouldPublish": false
},
{
"packageName": "fabric-website",
"projectFolder": "apps/fabric-website",
"shouldPublish": false
}
]
}