mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 15:06:27 +00:00
logs: packageFiles -> config
This commit is contained in:
parent
7e8148dfae
commit
2b2b1d92ab
1 changed files with 2 additions and 2 deletions
|
@ -11,9 +11,9 @@ module.exports = {
|
||||||
async function extractAndUpdate(config) {
|
async function extractAndUpdate(config) {
|
||||||
logger.debug('extractAndUpdate()');
|
logger.debug('extractAndUpdate()');
|
||||||
const packageFiles = await extractAllDependencies(config);
|
const packageFiles = await extractAllDependencies(config);
|
||||||
logger.debug({ packageFiles }, 'packageFiles');
|
logger.debug({ config: packageFiles }, 'packageFiles');
|
||||||
await fetchUpdates(config, packageFiles);
|
await fetchUpdates(config, packageFiles);
|
||||||
logger.debug({ packageFiles }, 'packageFiles with updates');
|
logger.debug({ config: packageFiles }, 'packageFiles with updates');
|
||||||
const { branches, branchList } = branchifyUpgrades(config, packageFiles);
|
const { branches, branchList } = branchifyUpgrades(config, packageFiles);
|
||||||
sortBranches(branches);
|
sortBranches(branches);
|
||||||
let res;
|
let res;
|
||||||
|
|
Loading…
Reference in a new issue