Skip to content

Commit 38c6e12

Browse files
authored
chore(deps): bump serialize-error from 2.1.0 to 8.1.0 (#7223)
* apply named imports, per v5.x breaking changes
1 parent 474320d commit 38c6e12

File tree

5 files changed

+17
-7
lines changed

5 files changed

+17
-7
lines changed

package-lock.json

Lines changed: 13 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
"redux-immutable": "3.1.0",
9090
"remarkable": "^2.0.1",
9191
"reselect": "^4.0.0",
92-
"serialize-error": "^2.1.0",
92+
"serialize-error": "^8.1.0",
9393
"sha.js": "^2.4.11",
9494
"swagger-client": "^3.13.2",
9595
"url-parse": "^1.5.1",

src/core/plugins/err/actions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import serializeError from "serialize-error"
1+
import { serializeError } from "serialize-error"
22

33
export const NEW_THROWN_ERR = "err_new_thrown_err"
44
export const NEW_THROWN_ERR_BATCH = "err_new_thrown_err_batch"

src/core/plugins/spec/actions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import YAML from "js-yaml"
22
import { Map } from "immutable"
33
import parseUrl from "url-parse"
4-
import serializeError from "serialize-error"
4+
import { serializeError } from "serialize-error"
55
import isString from "lodash/isString"
66
import debounce from "lodash/debounce"
77
import set from "lodash/set"

src/core/system.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { createStore, applyMiddleware, bindActionCreators, compose } from "redux
33
import Im, { fromJS, Map } from "immutable"
44
import deepExtend from "deep-extend"
55
import { combineReducers } from "redux-immutable"
6-
import serializeError from "serialize-error"
6+
import { serializeError } from "serialize-error"
77
import assignDeep from "@kyleshockey/object-assign-deep"
88
import { NEW_THROWN_ERR } from "corePlugins/err/actions"
99
import win from "core/window"

0 commit comments

Comments
 (0)