-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
renovate.json
101 lines (101 loc) · 2.43 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"labels": [
"dependency upgrade"
],
"masterIssue": true,
"extends": [
"config:base"
],
"automerge": false,
"enabled": true,
"ignorePaths": [
"source/OptimaJet.DWKit.StarterApplication/package.json"
],
"packageRules": [
{
"managers": ["nuget"],
"ignoreDeps": [
"Microsoft.EntityFrameworkCore.InMemory",
"Microsoft.EntityFrameworkCore.Design",
"Microsoft.EntityFrameworkCore",
"Microsoft.AspNetCore.StaticFiles",
"Microsoft.AspNetCore.Mvc",
"Microsoft.AspNetCore.Http.Abstractions",
"Microsoft.AspNetCore.Authentication.Cookies",
"Microsoft.AspNetCore",
"Microsoft.ApplicationInsights.AspNetCore",
"BundlerMinifier.Core"
]
},
{
// Upgrading from 0.10 to 0.14 breaks (changed API)
"packageNames" : ["react-hooks-fetch"],
"enabled": false
},
{
// Upgrading from 2.0 to 4.0 breaks
"packageNames" : ["css-loader"],
"enabled": false
},
{
// Upgrading from 0.15.14 to 0.16 breaks
// Probably (but not sure) due to react-orbitjs fork
"packageNames" : [
"orbit/coordinator",
"orbit/core",
"orbit/data",
"orbit/indexeddb",
"orbit/indexeddb-bucket",
"orbit/jsonapi",
"orbit/local-storage-bucket",
"orbit/store"
],
"enabled": false
},
{
"sourceUrlPrefixes": ["https://github.com/aspnet/Extensions"],
"groupName": "ASP.NET Extensions"
},
{
"packagePatterns": ["DWKit"],
"groupName": "DWKit packages"
},
{
"packagePatterns": ["xunit"],
"groupName": "XUnit packages"
},
{
"packagePatterns": ["^Microsoft.AspNetCore"],
"groupName": "ASP.NET Core packages"
},
{
"packagePatterns": ["^@types"],
"groupName": "TypeScript type definitions"
},
{
"packagePatterns": ["^@orbit"],
"groupName": "Orbit.JS"
},
{
"packagePatterns": ["^@polly"],
"groupName": "Polly.JS"
},
{
"sourceUrlPrefixes": [
"https://github.com/aspnet/MetaPackages",
"https://github.com/aspnet/AspNetCore"
],
"groupName": "ASP.NET Core packages"
},
{
"paths": ["source/SIL.AppBuilder.Portal.Frontend/package.json"],
"rangeStrategy": "replace",
"enabled": true,
"automerge": true
},
{
"packagePatterns": ["Dockerfile"],
"enabled": false
}
]
}