-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrush.json
90 lines (90 loc) · 2.43 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
/**
* 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.62.1",
"pnpmVersion": "6.7.1",
"pnpmOptions": {
"strictPeerDependencies": false,
"useWorkspaces": true
},
"nodeSupportedVersionRange": ">=12.13.0 <13.0.0 || >=14.15.0 <15.0.0 || >=16.13.0 <17.0.0",
"ensureConsistentVersions": false,
"projectFolderMinDepth": 2,
"projectFolderMaxDepth": 2,
"allowMostlyStandardPackageNames": false,
"gitPolicy": {},
// "approvedPackagesPolicy": {
// "reviewCategories": ["production"]
// },
"repository": {
"url": "https://github.com/lulusir/clean-js",
"defaultBranch": "main"
},
/**
* 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": [],
"projects": [
{
"packageName": "@clean-js/presenter",
"projectFolder": "packages/presenter",
"versionPolicyName": "presenter",
"shouldPublish": true
},
{
"packageName": "@clean-js/react-presenter",
"projectFolder": "packages/react-presenter",
"versionPolicyName": "presenter",
"shouldPublish": true
},
{
"packageName": "@clean-js/pro-presenters",
"projectFolder": "packages/pro-presenters",
"shouldPublish": true
},
{
"packageName": "@clean-js/vue-presenter",
"projectFolder": "packages/vue-presenter",
"versionPolicyName": "presenter",
"shouldPublish": false
},
{
"packageName": "docs",
"projectFolder": "docs/docs",
"shouldPublish": false
},
{
"packageName": "example-react",
"projectFolder": "examples/react",
"shouldPublish": false
},
{
"packageName": "example-vue3",
"projectFolder": "examples/vue3",
"shouldPublish": false
}
]
}