diff --git a/renovate.json b/renovate.json new file mode 100644 index 00000000..afdfc47b --- /dev/null +++ b/renovate.json @@ -0,0 +1,27 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:base"], + "packageRules": [ + { + "matchPackageNames": ["node"], + "enabled": false + }, + { + "matchDepTypes": ["devDependencies"], + "matchUpdateTypes": ["patch", "minor"], + "schedule": ["every 1 month on the 1st day-of-month at 12am"], + "groupName": "devDependencies (non-major)" + }, + { + "matchDepTypes": ["dependencies"], + "matchUpdateTypes": ["patch", "minor"], + "schedule": ["every 1 month on the 1st day-of-month at 12am"], + "groupName": "dependencies (non-major)" + } + ], + "rangeStrategy": "bump", + "lockFileMaintenance": { + "enabled": false + }, + "dependencyDashboard": false +}