Skip to content

Commit 49c4bc4

Browse files
committed
chore(deps): replace @kyleshockey/* deps with originals
@kyleshockey/object-assign-deep - no longer needs transpilation as current JavaScript engines already supports all the code in the library. @kyleshockey/xml - by installing stream library directly, we can use origin xml library without the fork. Refs #7341
1 parent 660e61f commit 49c4bc4

File tree

4 files changed

+15
-17
lines changed

4 files changed

+15
-17
lines changed

package-lock.json

+10-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@
6060
"dependencies": {
6161
"@babel/runtime-corejs3": "^7.14.7",
6262
"@braintree/sanitize-url": "^5.0.2",
63-
"@kyleshockey/object-assign-deep": "^0.4.2",
64-
"@kyleshockey/xml": "^1.0.2",
6563
"base64-js": "^1.5.1",
6664
"classnames": "^2.3.1",
6765
"css.escape": "1.5.1",
@@ -73,6 +71,7 @@
7371
"js-yaml": "^3.13.1",
7472
"lodash": "^4.17.21",
7573
"memoizee": "^0.4.15",
74+
"object-assign-deep": "=0.4.0",
7675
"prop-types": "^15.7.2",
7776
"randombytes": "^2.1.0",
7877
"react": "=17.0.2",
@@ -90,8 +89,10 @@
9089
"reselect": "^4.0.0",
9190
"serialize-error": "^8.1.0",
9291
"sha.js": "^2.4.11",
92+
"stream": "=0.0.2",
9393
"swagger-client": "^3.13.6",
9494
"url-parse": "^1.5.1",
95+
"xml": "=1.0.1",
9596
"xml-but-prettier": "^1.0.1",
9697
"zenscroll": "^4.0.2"
9798
},

src/core/plugins/samples/fn.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { objectify, isFunc, normalizeArray, deeplyStripKey } from "core/utils"
2-
import XML from "@kyleshockey/xml"
2+
import XML from "xml"
33
import memoizee from "memoizee"
44
import isEmpty from "lodash/isEmpty"
55

src/core/system.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Im, { fromJS, Map } from "immutable"
44
import deepExtend from "deep-extend"
55
import { combineReducers } from "redux-immutable"
66
import { serializeError } from "serialize-error"
7-
import assignDeep from "@kyleshockey/object-assign-deep"
7+
import assignDeep from "object-assign-deep"
88
import { NEW_THROWN_ERR } from "corePlugins/err/actions"
99
import win from "core/window"
1010

0 commit comments

Comments
 (0)