-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrush.json
54 lines (54 loc) · 1.39 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
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush.schema.json",
"rushVersion": "5.107.3",
"pnpmVersion": "8.7.6",
"nodeSupportedVersionRange": ">=18.16.1 <21.0.0",
"gitPolicy": {
"changeLogUpdateCommitMessage": "chore: update changelogs [skip ci]",
"versionBumpCommitMessage": "chore: release [skip ci]",
"changefilesCommitMessage": "chore: update change files [skip ci]"
},
"repository": {
"url": "https://github.com/plugxjs/plugx",
"defaultBranch": "main"
},
"eventHooks": {
"preRushInstall": [],
"postRushInstall": [],
"preRushBuild": [],
"postRushBuild": []
},
"variants": [],
"projects": [
{
"packageName": "@plugxjs/core",
"projectFolder": "packages/core",
"shouldPublish": true
},
{
"packageName": "@plugxjs/idm",
"projectFolder": "packages/idm",
"shouldPublish": true
},
{
"packageName": "plugx",
"projectFolder": "packages/plugx",
"shouldPublish": true
},
{
"packageName": "@plugxjs/vite-plugin",
"projectFolder": "packages/vite-plugin",
"shouldPublish": true
},
{
"packageName": "@plugxjs-test/unit",
"projectFolder": "tests/unit",
"shouldPublish": false
},
{
"packageName": "@plugxjs-test/integration",
"projectFolder": "tests/integration",
"shouldPublish": false
}
]
}