-
Notifications
You must be signed in to change notification settings - Fork 2
/
rush.json
62 lines (62 loc) · 2 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
/**
* This is the main configuration file for Rush.
* For full documentation, please see https://rushjs.io
*
* 完整选项,请查看: https://rushjs.io/pages/configs/rush_json/
*/
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush.schema.json",
"rushVersion": "5.52.0",
"pnpmVersion": "6.14.7",
"pnpmOptions": {
// "pnpmStore": "local"
/**
* 严格检查对等依赖项
*
* 当使用淘宝源 https://registry.npm.taobao.org
* 并且包含可选依赖`A`,而 package.json 中又没有显式依赖`A`
* 在开启次选项的情况下,安装会报错
*
* https://github.com/cnpm/cnpmjs.org/issues/1584
*/
// "strictPeerDependencies": true,
// "resolutionStrategy": "fast",
// "preventManualShrinkwrapChanges": true,
"useWorkspaces": true
},
"nodeSupportedVersionRange": ">=12.13.0 <13.0.0 || >=14.15.0 <15.0.0",
"ensureConsistentVersions": true,
"gitPolicy": {
"allowedEmailRegExps": [
"[^@]+@users\\.noreply\\.github\\.com",
"travis@example\\.org"
],
"sampleEmail": "[email protected]",
/**
* 在自动提交的消息中添加 [skip ci],避免 GitHub Action 陷入重复构建的死循环里
* https://github.blog/changelog/2021-02-08-github-actions-skip-pull-request-and-push-workflows-with-skip-ci/
*/
"versionBumpCommitMessage": "chore: applying package updates. [skip ci]",
"changeLogUpdateCommitMessage": "chore: deleting change files and updating change logs for package updates. [skip ci]"
},
"repository": {
"url": "https://github.com/XYShaoKang/video-http-server",
"defaultBranch": "master",
"defaultRemote": "origin"
},
"projects": [
{
"packageName": "front-end",
"projectFolder": "apps/front-end"
},
{
"packageName": "video-http-server",
"projectFolder": "apps/video-http-server",
"shouldPublish": true
},
{
"packageName": "qingfuwu",
"projectFolder": "apps/qingfuwu"
}
]
}