jitsu-cli 2.14.0-beta.15 → 2.14.0-beta.16

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jitsu-cli",
3
- "version": "2.14.0-beta.15",
3
+ "version": "2.14.0-beta.16",
4
4
  "description": "",
5
5
  "author": "Jitsu Dev Team <dev@jitsu.com>",
6
6
  "publishConfig": {
package/dist/main.js CHANGED
@@ -34261,10 +34261,10 @@ _export(exports, {
34261
34261
  }
34262
34262
  });
34263
34263
  function deepMerge(target, source) {
34264
- if (typeof source !== "object" || source === null) {
34264
+ if (typeof source !== "object" || source === null || Array.isArray(source) || source instanceof Date) {
34265
34265
  return source;
34266
34266
  }
34267
- if (typeof target !== "object" || target === null) {
34267
+ if (typeof target !== "object" || target === null || Array.isArray(target) || target instanceof Date) {
34268
34268
  return source;
34269
34269
  }
34270
34270
  return Object.entries(source).reduce((acc, [key, value])=>{