Skip to content
Snippets Groups Projects
Commit 8809861d authored by Rhys Arkins's avatar Rhys Arkins Committed by GitHub
Browse files

fix: Circular reference in depTypeConfig (#581)

parent 195988aa
No related branches found
No related tags found
No related merge requests found
...@@ -92,7 +92,7 @@ async function renovatePackageFile(packageFileConfig) { ...@@ -92,7 +92,7 @@ async function renovatePackageFile(packageFileConfig) {
const depTypeConfigs = depTypes.map(depType => { const depTypeConfigs = depTypes.map(depType => {
const depTypeConfig = configParser.mergeChildConfig( const depTypeConfig = configParser.mergeChildConfig(
config, config,
config[depType] Object.assign({}, config[depType])
); );
depTypeConfig.depType = depType; depTypeConfig.depType = depType;
depTypeConfig.logger = logger.child({ depTypeConfig.logger = logger.child({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment