diff --git a/renovate.json b/renovate.json index 9104f25..47fab79 100644 --- a/renovate.json +++ b/renovate.json @@ -1,20 +1,27 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:base" - ], + "extends": ["config:base"], + "enabledManagers": ["npm"], + "rangeStrategy": "bump", + "includeForks": true, "packageRules": [ { "packagePatterns": ["*"], - "excludePackagePatterns": [ - "@patternfly/documentation-framework" - ], + "excludePackagePatterns": ["@patternfly/*"], "enabled": false }, { - "packageNames": [ - "@patternfly/documentation-framework" - ] + "datasources": ["npm"], + "packagePatterns": ["@patternfly/*"], + "excludePackageNames": ["@patternfly/documentation-framework", "@patternfly/patternfly-a11y"], + "groupName": "patternfly", + "followTag": "prerelease" + }, + { + "datasources": ["npm"], + "matchPackageNames": ["@patternfly/documentation-framework", "@patternfly/patternfly-a11y"], + "groupName": "patternfly", + "followTag": "latest" } ] }