Example repository where only a single dependency is updated using Renovate Bot
The renovate.json only allows checking updates for dependency debug
, all other dependencies (like chalk
) should be ignored. Here is the relevant portion of the file, we disable all updates, except for package debug
using excludePackagePatterns option:
"packageRules": [
{
"packagePatterns": ["*"],
"excludePackagePatterns": ["debug"],
"enabled": false
}
]
Renovate Bot documentation at https://docs.renovatebot.com/
You can see what Renovate does using the Renovate Dashboard.
Click on any build, and in the DEBUG logs you can search for a module and see if it was disabled.