mirror of https://github.com/zulip/zulip.git
dependencies: Upgrade JavaScript dependencies.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
04075201a0
commit
dadacc38a8
|
@ -5,7 +5,7 @@ import path from "path";
|
|||
import ErrorStackParser from "error-stack-parser";
|
||||
import fetch from "node-fetch";
|
||||
import type {Browser, ConsoleMessage, ConsoleMessageLocation, ElementHandle, Page} from "puppeteer";
|
||||
import {launch} from "puppeteer";
|
||||
import puppeteer from "puppeteer";
|
||||
import StackFrame from "stackframe";
|
||||
import StackTraceGPS from "stacktrace-gps";
|
||||
|
||||
|
@ -63,7 +63,7 @@ class CommonUtils {
|
|||
async ensure_browser(): Promise<Browser> {
|
||||
if (this.browser === null) {
|
||||
const {window_size} = this;
|
||||
this.browser = await launch({
|
||||
this.browser = await puppeteer.launch({
|
||||
args: [
|
||||
`--window-size=${window_size.width},${window_size.height}`,
|
||||
"--no-sandbox",
|
||||
|
|
|
@ -99,7 +99,7 @@
|
|||
"@typescript-eslint/parser": "^4.0.1",
|
||||
"babel-plugin-rewire-ts": "^1.4.0",
|
||||
"callsites": "^3.1.0",
|
||||
"diff": "^4.0.1",
|
||||
"diff": "^5.0.0",
|
||||
"difflib": "^0.2.4",
|
||||
"es-check": "^6.0.0",
|
||||
"eslint": "^7.2.0",
|
||||
|
@ -126,7 +126,7 @@
|
|||
"webpack-dev-server": "^4.2.0",
|
||||
"xvfb": "^0.4.0",
|
||||
"yaml": "^2.0.0-8",
|
||||
"yargs": "^15.0.2",
|
||||
"yargs": "^17.1.1",
|
||||
"yarn-deduplicate": "^3.0.0",
|
||||
"zulip-js": "^2.0.8"
|
||||
},
|
||||
|
|
|
@ -48,4 +48,4 @@ API_FEATURE_LEVEL = 97
|
|||
# historical commits sharing the same major version, in which case a
|
||||
# minor version bump suffices.
|
||||
|
||||
PROVISION_VERSION = "158.0"
|
||||
PROVISION_VERSION = "159.0"
|
||||
|
|
Loading…
Reference in New Issue