forked from muuvmuuv/muuvmuuv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrush.json
63 lines (63 loc) · 1.56 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
// https://rushjs.io/pages/configs/rush_json/
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush.schema.json",
"rushVersion": "5.30.1",
"pnpmVersion": "4.14.4",
"pnpmOptions": {
"strictPeerDependencies": true,
"useWorkspaces": true
},
"nodeSupportedVersionRange": ">=12.13.0 <13.0.0",
"gitPolicy": {
"versionBumpCommitMessage": "chore: applying package updates [skip-ci]"
},
"repository": {
"url": "git@github.com:muuvmuuv/muuvmuuv.git"
},
"approvedPackagesPolicy": {
"reviewCategories": [
"production",
"tools",
"prototypes"
]
},
"projects": [
{
"packageName": "age",
"projectFolder": "tools/age",
"reviewCategory": "tools"
},
{
"packageName": "readme",
"projectFolder": "tools/readme",
"reviewCategory": "tools"
},
{
"packageName": "node-serverless-now-playing",
"projectFolder": "packages/now-playing",
"reviewCategory": "prototypes"
},
{
"packageName": "node-serverless-visits",
"projectFolder": "packages/visits",
"reviewCategory": "prototypes"
},
{
"packageName": "muuvmuuv",
"projectFolder": "packages/muuvmuuv",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "marvinheilemann",
"projectFolder": "packages/marvinheilemann",
"reviewCategory": "production",
"shouldPublish": true
},
{
"packageName": "marvin",
"projectFolder": "packages/marvin",
"reviewCategory": "prototypes"
}
]
}