mod-build 3.7.31-beta.1 → 3.7.31

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.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 3.7.30
3
+ ## 3.7.31
4
4
 
5
5
  - Avoided overriding the control's step configuration during the merge with the variation's steps and the default form config.
6
6
 
@@ -293,7 +293,7 @@ module.exports = function(gulp, gulpPlugins, siteSettings, siteData) {
293
293
  if (item.fields) {
294
294
  item.fields = item.fields.map(field => {
295
295
  if (field.name && defaultConfig[field.name]) {
296
- field = Object.assign(defaultConfig[field.name], field);
296
+ field = Object.assign(cloneDeep(defaultConfig[field.name]), field);
297
297
  }
298
298
  return field;
299
299
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-build",
3
- "version": "3.7.31-beta.1",
3
+ "version": "3.7.31",
4
4
  "description": "Share components for S3 sites.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",