BREAKING CHANGE
Now mergeArrays configuration option also merges the objects inside the arrays.
- default:
{ someArray: [ {a: 1} , { c: 2 }] }
- data:
{ someArray: [ {b: 3} ] }
- result
{ someArray: [ {a: 1, b: 3}, {c: 2} ] }
What's Changed
Full Changelog: 0.5.4...0.6.0