-
Notifications
You must be signed in to change notification settings - Fork 6
/
renovate.json
87 lines (87 loc) · 2.4 KB
/
renovate.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
{
"enabled": true,
"extends": [
":semanticPrefixFixDepsChoreOthers",
"helpers:pinGitHubActionDigests",
"schedule:earlyMondays"
],
"labels": ["dependencies"],
"vulnerabilityAlerts": {
"commitMessageSuffix": "[SECURITY] J:CDX-227"
},
"packageRules": [
{
"matchPackagePatterns": ["*"],
"groupName": "all dependencies",
"groupSlug": "all"
},
{
"groupName": "Oclif packages",
"groupSlug": "oclif",
"matchPackagePatterns": ["^@oclif/*", "^oclif$"]
},
{
"matchPackagePatterns": ["^@angular/*", "^@angular-devkit/*"],
"groupSlug": "angular",
"rangeStrategy": "replace"
},
{
"matchPackagePatterns": ["^@stencil/*"],
"groupSlug": "stencil",
"description": "KIT-2312 Migrate Stencil projects to V3",
"allowedVersions": "2.x"
},
{
"matchPackageNames": ["strip-ansi"],
"matchCurrentVersion": "6.x",
"allowedVersions": "6.x",
"description": "CDX-768: Need to migrate E2E to ESM (not easy)"
},
{
"matchPackageNames": ["get-port"],
"matchCurrentVersion": "5.x",
"allowedVersions": "5.x",
"description": "CDX-768: Need to migrate E2E to ESM (not easy)"
},
{
"matchPackageNames": ["chalk"],
"matchCurrentVersion": "4.x",
"allowedVersions": "4.x",
"description": "CDX-768: Need to migrate E2E to ESM (not easy)"
},
{
"matchPackageNames": ["open"],
"matchCurrentVersion": "8.x",
"allowedVersions": "8.x",
"description": "CDX-768: Need to migrate E2E to ESM (not easy)"
},
{
"matchPackageNames": ["inquirer", "@types/inquirer"],
"matchCurrentVersion": "8.x",
"allowedVersions": "8.x",
"description": "CDX-768: Need to migrate E2E to ESM (not easy)"
},
{
"matchPackageNames": ["fkill"],
"matchCurrentVersion": "7.x",
"allowedVersions": "7.x",
"description": "CDX-768: Need to migrate E2E to ESM (not easy)"
},
{
"matchPackageNames": ["@types/node"],
"matchCurrentVersion": "18.x",
"allowedVersions": "18.x",
"description": "We stay on the LTS"
},
{
"matchPackageNames": ["@vue/tsconfig"],
"allowedVersions": "0.1.x",
"description": "CDX-1443: Need TypeScript 5"
}
],
"rangeStrategy": "auto",
"lockFileMaintenance": {
"enabled": true
},
"commitMessageSuffix": "J:CDX-227"
}