@living-architecture/riviere-builder 0.8.2 → 0.8.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -103,7 +103,7 @@ function maybePushScalarOverwriteWarning(warnings, componentId, field, existingV
103
103
  });
104
104
  }
105
105
  function mergeNestedObject(existing, incoming, options, warnings, componentId, pathPrefix) {
106
- const merged = { ...(existing ?? {}) };
106
+ const merged = { ...existing };
107
107
  for (const [field, incomingValue] of Object.entries(incoming)) {
108
108
  if (!isDefined(incomingValue)) {
109
109
  continue;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@living-architecture/riviere-builder",
3
- "version": "0.8.2",
3
+ "version": "0.8.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },