chore(deps): replace @kyleshockey/* deps with originals

@kyleshockey/object-assign-deep - replaced by lodash/merge. If behavior
not be compatible well use lodash/mergeWith.

@kyleshockey/xml - by installing stream library directly, we can use origin
xml library without the fork.

Refs #7341
This commit is contained in:
Vladimir Gorej
2021-07-19 10:22:30 +02:00
parent 4c369b0027
commit cf9a3657cc
4 changed files with 10 additions and 18 deletions

View File

@@ -1,5 +1,5 @@
import { objectify, isFunc, normalizeArray, deeplyStripKey } from "core/utils"
import XML from "@kyleshockey/xml"
import XML from "xml"
import memoizee from "memoizee"
import isEmpty from "lodash/isEmpty"

View File

@@ -4,7 +4,7 @@ import Im, { fromJS, Map } from "immutable"
import deepExtend from "deep-extend"
import { combineReducers } from "redux-immutable"
import { serializeError } from "serialize-error"
import assignDeep from "@kyleshockey/object-assign-deep"
import merge from "lodash/merge"
import { NEW_THROWN_ERR } from "corePlugins/err/actions"
import win from "core/window"
@@ -313,7 +313,7 @@ export default class Store {
function combinePlugins(plugins, toolbox, pluginOptions) {
if(isObject(plugins) && !isArray(plugins)) {
return assignDeep({}, plugins)
return merge({}, plugins)
}
if(isFunc(plugins)) {