@worktile/theia 3.0.0-next.0 → 3.0.0-next.1

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.
@@ -1460,7 +1460,7 @@
1460
1460
  var newOptions = {};
1461
1461
  for (var option in options) {
1462
1462
  if (Array.isArray(options[option])) {
1463
- newOptions[option] = _.unionWith(options[option], plugin.options[option], _.isEqual);
1463
+ newOptions[option] = _.union(options[option], plugin.options[option]);
1464
1464
  continue;
1465
1465
  }
1466
1466
  newOptions[option] = _.defaultsDeep(options[option], plugin.options[option]);