-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrenovate.json5
35 lines (34 loc) · 1013 Bytes
/
renovate.json5
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"packageRules": [
{
// JS packages we want to treat as apps
"matchCategories": ["js"],
"matchPackageNames": [
// scratch-gui is kind of a lib (wrapped by www, desktop, etc.) but kind of an app (esp. standalone)
// treating it as an app is slightly safer, so let's do that
"@scratch/scratch-gui"
],
"extends": [
"github>scratchfoundation/scratch-renovate-config:js-app"
]
},
{
// JS packages we want to treat as libs (should cover all JS except apps handled above)
"matchCategories": ["js"],
"matchPackageNames": [
"!@scratch/scratch-gui"
],
"extends": [
"github>scratchfoundation/scratch-renovate-config:js-lib"
]
},
{
// Non-JS updates use default Scratch config
"matchCategories": ["!js"],
"extends": [
"github>scratchfoundation/scratch-renovate-config"
]
}
]
}