-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathng.json
66 lines (66 loc) · 2.1 KB
/
ng.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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "angular specific settings",
"packageRules": [
{
"description": "Require typescript minor approval for angular",
"matchPackageNames": ["typescript"],
"matchUpdateTypes": ["minor"],
"dependencyDashboardApproval": true
},
{
"description": "Separate multiple typescript minor for angular",
"matchPackageNames": ["typescript"],
"separateMultipleMinor": true
},
{
"description": "Do not automerge and group angular updates for major and minor",
"matchSourceUrls": [
"https://github.com/angular/angular",
"https://github.com/angular/angular-cli",
"https://github.com/angular/components"
],
"matchUpdateTypes": ["major", "minor"],
"automerge": false,
"groupName": "angular",
"semanticCommitType": "fix"
},
{
"description": "Do PR automerge angular updates for patch",
"matchSourceUrls": [
"https://github.com/angular/angular",
"https://github.com/angular/angular-cli",
"https://github.com/angular/components"
],
"matchUpdateTypes": ["patch"],
"semanticCommitType": "fix",
"automergeType": "pr"
},
{
"description": "Add jest-preset-angular major update to Jest monorepo",
"matchSourceUrls": [
"https://github.com/thymikee/jest-preset-angular{,/}**"
],
"matchUpdateTypes": ["major"],
"groupName": "jest monorepo"
},
{
"description": "Do minimum release age for some deps",
"matchSourceUrls": [
"https://github.com/angular/**",
"https://github.com/nrwl/nx",
"https://github.com/primefaces/primeng{,/}**"
],
"minimumReleaseAge": null,
"prNotPendingHours": 25
},
{
"description": "Do not automerge nx, don't seperate major / minor / patch, needs migration",
"matchSourceUrls": ["https://github.com/nrwl/nx"],
"automerge": false,
"separateMinorPatch": false,
"separateMajorMinor": false,
"semanticCommitType": "build"
}
]
}