mirror of
https://github.com/renovatebot/renovate.git
synced 2024-11-09 10:07:56 +00:00
678 B
678 B
title |
---|
Datasources |
Datasources
After Renovate's manager scanned the files and extracted the dependencies, it assigns a datasource
to each extracted package file or dependency.
The datasource
tells Renovate how to search for new versions.
You don't need to configure or override datasources.
But you may use datasources in a packageRules
array to configure Renovate's behavior, for example:
{
"packageRules": [
{
"matchDatasources": ["npm"],
"matchPackageNames": ["lodash"],
"automerge": true
}
]
}