Configure Renovate (#19)

* Add renovate.json

* Update renovate config

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Anatoly Laskaris <github_me@nahsi.dev>
This commit is contained in:
renovate[bot] 2022-09-09 17:34:20 +03:00 committed by GitHub
parent b44a48b877
commit 5a2422e66f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

29
.github/renovate.json vendored Normal file
View File

@ -0,0 +1,29 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"enabledManagers": ["cargo", "npm"],
"packageRules": [
{
"matchLanguages": ["rust"],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "all non-major Rust dependencies"
},
{
"matchLanguages": ["js"],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "all non-major JS dependencies"
},
{
"matchPackagePatterns": ["^@wasmer", "^wasmer"],
"enabled": false
}
]
}