Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
0.6.0 source code.tar.gz | 2023-11-22 | 75.4 kB | |
0.6.0 source code.zip | 2023-11-22 | 79.7 kB | |
README.md | 2023-11-22 | 507 Bytes | |
Totals: 3 Items | 155.6 kB | 1 |
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
- feat: merge objects by @aralroca in https://github.com/aralroca/default-composer/pull/25
Full Changelog: https://github.com/aralroca/default-composer/compare/0.5.4...0.6.0