Skip to content

Commit

Permalink
chore(deps): replace @kyleshockey/* deps with originals
Browse files Browse the repository at this point in the history
@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
  • Loading branch information
char0n committed Jul 19, 2021
1 parent 660e61f commit 49c4bc4
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 17 deletions.
23 changes: 10 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@
"dependencies": {
"@babel/runtime-corejs3": "^7.14.7",
"@braintree/sanitize-url": "^5.0.2",
"@kyleshockey/object-assign-deep": "^0.4.2",
"@kyleshockey/xml": "^1.0.2",
"base64-js": "^1.5.1",
"classnames": "^2.3.1",
"css.escape": "1.5.1",
Expand All @@ -73,6 +71,7 @@
"js-yaml": "^3.13.1",
"lodash": "^4.17.21",
"memoizee": "^0.4.15",
"object-assign-deep": "=0.4.0",
"prop-types": "^15.7.2",
"randombytes": "^2.1.0",
"react": "=17.0.2",
Expand All @@ -90,8 +89,10 @@
"reselect": "^4.0.0",
"serialize-error": "^8.1.0",
"sha.js": "^2.4.11",
"stream": "=0.0.2",
"swagger-client": "^3.13.6",
"url-parse": "^1.5.1",
"xml": "=1.0.1",
"xml-but-prettier": "^1.0.1",
"zenscroll": "^4.0.2"
},
Expand Down
2 changes: 1 addition & 1 deletion src/core/plugins/samples/fn.js
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
2 changes: 1 addition & 1 deletion src/core/system.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 assignDeep from "object-assign-deep"
import { NEW_THROWN_ERR } from "corePlugins/err/actions"
import win from "core/window"

Expand Down

0 comments on commit 49c4bc4

Please sign in to comment.