jitsu-cli 2.14.0-beta.14 → 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.
- package/compiled/package.json +1 -1
- package/dist/main.js +2 -2
- package/dist/main.js.map +1 -1
- package/package.json +1 -1
package/compiled/package.json
CHANGED
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])=>{
|