dependencies: Upgrade JavaScript dependencies.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2022-03-01 21:45:32 -08:00 committed by Anders Kaseorg
parent c09bca34b8
commit bdcd9da7e9
4 changed files with 896 additions and 890 deletions

View File

@ -11,7 +11,7 @@
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/register": "^7.6.2",
"@formatjs/intl": "^1.9.7",
"@formatjs/intl": "^2.0.0",
"@giphy/js-components": "^5.0.5",
"@giphy/js-fetch-api": "^4.0.1",
"@uppy/core": "^1.7.1",
@ -53,7 +53,7 @@
"plotly.js": "^2.0.0",
"postcss": "^8.0.3",
"postcss-calc": "^8.0.0",
"postcss-extend-rule": "^3.0.0",
"postcss-extend-rule": "^4.0.0",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.1.1",
"postcss-media-minmax": "https://github.com/andersk/postcss-media-minmax.git#01239f17f4a9872ace1dd133cee526a7de4ac9f5",
@ -103,9 +103,9 @@
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.0.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-formatjs": "^2.16.0",
"eslint-plugin-formatjs": "^3.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-unicorn": "^40.1.0",
"eslint-plugin-unicorn": "^41.0.0",
"jsdom": "^19.0.0",
"mockdate": "^3.0.2",
"node-fetch": "^2.6.1",
@ -116,7 +116,7 @@
"source-map": "https://codeload.github.com/benthemonkey/source-map/tar.gz/d95423f77edef6cbb9e21d2d6014c7de85ae220a",
"stylelint": "^14.0.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^24.0.0",
"stylelint-config-standard": "^25.0.0",
"svgo": "^2.0.3",
"swagger-parser": "^10.0.0",
"ts-node": "^10.0.0",

View File

@ -86,10 +86,7 @@ export async function display_stacktrace(error: string, stack: string): Promise<
ex.stack = stack;
const stackframes: CleanStackFrame[] = await Promise.all(
ErrorStackParser.parse(ex).map(async (stack_frame: ErrorStackParser.StackFrame) => {
// Work around mistake in ErrorStackParser.StackFrame definition
// https://github.com/stacktracejs/error-stack-parser/pull/54
let location = stack_frame as unknown as StackFrame;
ErrorStackParser.parse(ex).map(async (location: StackFrame) => {
try {
location = await stack_trace_gps.getMappedLocation(location);
} catch {

View File

@ -48,4 +48,4 @@ API_FEATURE_LEVEL = 117
# historical commits sharing the same major version, in which case a
# minor version bump suffices.
PROVISION_VERSION = "180.2"
PROVISION_VERSION = "181.0"

1769
yarn.lock

File diff suppressed because it is too large Load Diff