chore(deps): bump serialize-error from 2.1.0 to 8.1.0 (#7223)

* apply named imports, per v5.x breaking changes
This commit is contained in:
Tim Lai
2021-04-29 13:49:36 -07:00
committed by GitHub
parent 474320d0b0
commit 38c6e127bf
5 changed files with 17 additions and 7 deletions

16
package-lock.json generated
View File

@@ -29334,9 +29334,19 @@
} }
}, },
"serialize-error": { "serialize-error": {
"version": "2.1.0", "version": "8.1.0",
"resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-2.1.0.tgz", "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-8.1.0.tgz",
"integrity": "sha1-ULZ51WNc34Rme9yOWa9OW4HV9go=" "integrity": "sha512-3NnuWfM6vBYoy5gZFvHiYsVbafvI9vZv/+jlIigFn4oP4zjNPK3LhcY0xSCgeb1a5L8jO71Mit9LlNoi2UfDDQ==",
"requires": {
"type-fest": "^0.20.2"
},
"dependencies": {
"type-fest": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
"integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="
}
}
}, },
"serialize-javascript": { "serialize-javascript": {
"version": "4.0.0", "version": "4.0.0",

View File

@@ -89,7 +89,7 @@
"redux-immutable": "3.1.0", "redux-immutable": "3.1.0",
"remarkable": "^2.0.1", "remarkable": "^2.0.1",
"reselect": "^4.0.0", "reselect": "^4.0.0",
"serialize-error": "^2.1.0", "serialize-error": "^8.1.0",
"sha.js": "^2.4.11", "sha.js": "^2.4.11",
"swagger-client": "^3.13.2", "swagger-client": "^3.13.2",
"url-parse": "^1.5.1", "url-parse": "^1.5.1",

View File

@@ -1,4 +1,4 @@
import serializeError from "serialize-error" import { serializeError } from "serialize-error"
export const NEW_THROWN_ERR = "err_new_thrown_err" export const NEW_THROWN_ERR = "err_new_thrown_err"
export const NEW_THROWN_ERR_BATCH = "err_new_thrown_err_batch" export const NEW_THROWN_ERR_BATCH = "err_new_thrown_err_batch"

View File

@@ -1,7 +1,7 @@
import YAML from "js-yaml" import YAML from "js-yaml"
import { Map } from "immutable" import { Map } from "immutable"
import parseUrl from "url-parse" import parseUrl from "url-parse"
import serializeError from "serialize-error" import { serializeError } from "serialize-error"
import isString from "lodash/isString" import isString from "lodash/isString"
import debounce from "lodash/debounce" import debounce from "lodash/debounce"
import set from "lodash/set" import set from "lodash/set"

View File

@@ -3,7 +3,7 @@ import { createStore, applyMiddleware, bindActionCreators, compose } from "redux
import Im, { fromJS, Map } from "immutable" import Im, { fromJS, Map } from "immutable"
import deepExtend from "deep-extend" import deepExtend from "deep-extend"
import { combineReducers } from "redux-immutable" import { combineReducers } from "redux-immutable"
import serializeError from "serialize-error" import { serializeError } from "serialize-error"
import assignDeep from "@kyleshockey/object-assign-deep" import assignDeep from "@kyleshockey/object-assign-deep"
import { NEW_THROWN_ERR } from "corePlugins/err/actions" import { NEW_THROWN_ERR } from "corePlugins/err/actions"
import win from "core/window" import win from "core/window"