3e387156f7
I noticed that caniuse-lite wants to be updated regularly via `npx browserslist@latest --update-db`. Renovate bot can do this if we enable its `lockFileMaintenance` option ([source](https://github.com/renovatebot/renovate/issues/8615)). I'm not sure exactly how annoying Renovate bot will be if we enable this option but I figure we can just try it and disable it if it's annoying.
17 lines
363 B
JSON
17 lines
363 B
JSON
{
|
|
"extends": ["config:base"],
|
|
"ignorePaths": ["test/"],
|
|
"labels": ["Type: Dependencies"],
|
|
"lockFileMaintenance": {"enabled": true},
|
|
"stabilityDays": 1,
|
|
"vulnerabilityAlerts": {
|
|
"labels": ["Type: Security"]
|
|
},
|
|
"packageRules": [
|
|
{
|
|
"extends": ["schedule:monthly"],
|
|
"matchDepTypes": ["dependencies", "devDependencies"]
|
|
}
|
|
]
|
|
}
|