yamlinc
yamlinc copied to clipboard
Reverse Merge
Hi,
when i'm doing the merge of one yml fill to another one with another properties the yml file will always import in the end.
ex:
customer.yml
type: customer
name: John
age: 30
users.yml
$include: ./customer-yml
api:
server_url: xpto.api.com
the output of users.inc.yml will be:
api:
server_url: xpto.api.com
type: customer
name: John
age: 30
so is inverse to the place were i put the include.
How can i include for the order that i want?