Let's say I have two configuration NEON files:
config1.neon
parameters:
excludePaths:
- path1
config2.neon
includes:
- "config1.neon"
parameters:
excludePaths:
- path2
Resulting configuration (config2.neon) has only excludePath = [path2]. Is there an easy way to append the lists instead of overriding the older one? So that excludePath = [path1, path2]?