-
Notifications
You must be signed in to change notification settings - Fork 17
/
rush.json
95 lines (95 loc) · 2.23 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
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush.schema.json",
"rushVersion": "5.94.1",
"pnpmVersion": "7.32.1",
"nodeSupportedVersionRange": ">=14.15.0 <15.0.0 || >=16.13.0 <17.0.0 || >=18.15.0 <19.0.0",
"suppressNodeLtsWarning": true,
"ensureConsistentVersions": true,
"projectFolderMinDepth": 1,
"projectFolderMaxDepth": 2,
"allowMostlyStandardPackageNames": false,
"gitPolicy": {
"versionBumpCommitMessage": "Bump versions [skip ci]",
"changeLogUpdateCommitMessage": "Update changelogs [skip ci]"
},
"repository": {
"url": "https://github.com/VisActor/VMind",
"defaultBranch": "main",
"defaultRemote": "origin"
},
"allowedProjectTags": [
"tool",
"share",
"package",
"doc"
],
"projects": [
{
"packageName": "@internal/bundler",
"projectFolder": "tools/bundler",
"tags": [
"tool"
],
"shouldPublish": false
},
{
"packageName": "@internal/typescript-json-schema",
"projectFolder": "tools/typescript-json-schema",
"tags": [
"tool"
],
"shouldPublish": false
},
{
"packageName": "@internal/eslint-config",
"projectFolder": "share/eslint-config",
"tags": [
"share"
],
"shouldPublish": false
},
{
"packageName": "@internal/ts-config",
"projectFolder": "share/ts-config",
"tags": [
"share"
],
"shouldPublish": false
},
{
"packageName": "@internal/docs",
"projectFolder": "docs",
"tags": [
"doc"
],
"shouldPublish": false
},
{
"packageName": "@visactor/vmind",
"projectFolder": "packages/vmind",
"shouldPublish": true,
"versionPolicyName": "vmindMin",
"tags": [
"package"
]
},
{
"packageName": "@visactor/calculator",
"projectFolder": "packages/calculator",
"shouldPublish": true,
"versionPolicyName": "vmindMin",
"tags": [
"package"
]
},
{
"packageName": "@visactor/chart-advisor",
"projectFolder": "packages/chart-advisor",
"shouldPublish": true,
"versionPolicyName": "vmindMin",
"tags": [
"package"
]
}
]
}