mirror of https://github.com/bastienwirtz/homer
Fix YAML anchors
Fixes https://github.com/bastienwirtz/homer/issues/559 Based on https://eemeli.org/yaml/#schema-optionspull/715/head
parent
504efe01cb
commit
f160caecfa
|
@ -245,7 +245,7 @@ export default {
|
||||||
return response
|
return response
|
||||||
.text()
|
.text()
|
||||||
.then((body) => {
|
.then((body) => {
|
||||||
return parse(body);
|
return parse(body, {merge: true});
|
||||||
})
|
})
|
||||||
.then(function (config) {
|
.then(function (config) {
|
||||||
if (config.externalConfig) {
|
if (config.externalConfig) {
|
||||||
|
|
Loading…
Reference in New Issue