Skip to content

Commit

Permalink
fix(hops-config): fix extends overriding previous values instead of e…
Browse files Browse the repository at this point in the history
…xtending
  • Loading branch information
robin-drexler authored and dmbch committed Jan 30, 2018
1 parent 6cf56d3 commit 93b8945
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function applyInheritedConfig(config) {
sync: true,
});
var _result = loader.load();
assign(result, _result ? _result.config : {});
assign(result, assign(_result ? _result.config : {}, result));
} else {
console.error('Failed to load inherited config', configName);
}
Expand Down

0 comments on commit 93b8945

Please sign in to comment.