mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
chore(deps-dev): Bump the dev-dependencies group with 7 updates (#11612)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nikolay Vitkov <nvitkov@chromium.org>
This commit is contained in:
parent
7a3d24bf57
commit
c7421ddfcd
743
package-lock.json
generated
743
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
16
package.json
16
package.json
@ -122,22 +122,22 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@actions/core": "1.10.1",
|
||||
"@microsoft/api-extractor": "7.38.5",
|
||||
"@microsoft/api-extractor": "7.39.0",
|
||||
"@pptr/testserver": "file:packages/testserver",
|
||||
"@puppeteer/docgen": "file:tools/docgen",
|
||||
"@types/mocha": "10.0.6",
|
||||
"@types/node": "20.8.4",
|
||||
"@types/semver": "7.5.6",
|
||||
"@types/sinon": "17.0.2",
|
||||
"@typescript-eslint/eslint-plugin": "6.15.0",
|
||||
"@typescript-eslint/parser": "6.15.0",
|
||||
"@typescript-eslint/eslint-plugin": "6.17.0",
|
||||
"@typescript-eslint/parser": "6.17.0",
|
||||
"cross-env": "7.0.3",
|
||||
"esbuild": "0.19.10",
|
||||
"esbuild": "0.19.11",
|
||||
"eslint-config-prettier": "9.1.0",
|
||||
"eslint-import-resolver-typescript": "3.6.1",
|
||||
"eslint-plugin-import": "2.29.1",
|
||||
"eslint-plugin-mocha": "10.2.0",
|
||||
"eslint-plugin-prettier": "5.0.1",
|
||||
"eslint-plugin-prettier": "5.1.2",
|
||||
"eslint-plugin-rulesdir": "0.2.2",
|
||||
"eslint-plugin-tsdoc": "0.2.17",
|
||||
"eslint-plugin-unused-imports": "3.0.0",
|
||||
@ -155,9 +155,9 @@
|
||||
"sinon": "17.0.1",
|
||||
"source-map-support": "0.5.21",
|
||||
"spdx-satisfies": "5.0.1",
|
||||
"tsd": "0.30.0",
|
||||
"tsx": "4.6.2",
|
||||
"typescript": "5.2.2",
|
||||
"tsd": "0.30.2",
|
||||
"tsx": "4.7.0",
|
||||
"typescript": "5.3.3",
|
||||
"wireit": "0.14.1"
|
||||
},
|
||||
"overrides": {
|
||||
|
@ -285,6 +285,7 @@ export interface ScreenshotOptions {
|
||||
}
|
||||
|
||||
/**
|
||||
* @public
|
||||
* @experimental
|
||||
*/
|
||||
export interface ScreencastOptions {
|
||||
|
@ -473,7 +473,7 @@ export class CdpPage extends Page {
|
||||
const {level, text, args, source, url, lineNumber} = event.entry;
|
||||
if (args) {
|
||||
args.map(arg => {
|
||||
return releaseObject(this.#primaryTargetClient, arg);
|
||||
void releaseObject(this.#primaryTargetClient, arg);
|
||||
});
|
||||
}
|
||||
if (source !== 'worker') {
|
||||
|
@ -31,6 +31,7 @@ export * from './ExecutionContext.js';
|
||||
export * from './FirefoxTargetManager.js';
|
||||
export * from './Frame.js';
|
||||
export * from './FrameManager.js';
|
||||
export * from './FrameManagerEvents.js';
|
||||
export * from './FrameTree.js';
|
||||
export * from './HTTPRequest.js';
|
||||
export * from './HTTPResponse.js';
|
||||
|
@ -15,6 +15,7 @@
|
||||
*/
|
||||
|
||||
export * from './BrowserWebSocketTransport.js';
|
||||
export * from './CallbackRegistry.js';
|
||||
export * from './Configuration.js';
|
||||
export * from './ConnectionTransport.js';
|
||||
export * from './ConnectOptions.js';
|
||||
|
@ -200,7 +200,7 @@ export class AsyncDisposableStack {
|
||||
*
|
||||
* @param value - The resource to add. `null` and `undefined` will not be added,
|
||||
* but will be returned.
|
||||
* @returns The provided {@link value}.
|
||||
* @returns The provided `value`.
|
||||
*/
|
||||
use<T extends AsyncDisposable | null | undefined>(value: T): T {
|
||||
if (value) {
|
||||
@ -215,7 +215,7 @@ export class AsyncDisposableStack {
|
||||
* @param value - The value to add.
|
||||
* @param onDispose - The callback to use in place of a `[disposeSymbol]()`
|
||||
* method. Will be invoked with `value` as the first parameter.
|
||||
* @returns The provided {@link value}.
|
||||
* @returns The provided `value`.
|
||||
*/
|
||||
adopt<T>(value: T, onDispose: (value: T) => Promise<void>): T {
|
||||
this.#stack.push({
|
||||
|
Loading…
Reference in New Issue
Block a user