puppeteer-browser-ready 1.3.7 → 1.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -50,7 +50,7 @@ after(async () => await browserReady.close(web));
|
|
|
50
50
|
|
|
51
51
|
## C) TypeScript Declarations
|
|
52
52
|
See the TypeScript declarations at the top of the
|
|
53
|
-
[puppeteer-browser-ready.ts](puppeteer-browser-ready.ts) file.
|
|
53
|
+
[puppeteer-browser-ready.ts](src/puppeteer-browser-ready.ts) file.
|
|
54
54
|
|
|
55
55
|
The `browserReady.goto(url, options)` function returns a function that takes a Puppeteer **Browser**
|
|
56
56
|
object and returns a **Promise** that resolves with a **Web** object:
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//! puppeteer-browser-ready v1.3.
|
|
1
|
+
//! puppeteer-browser-ready v1.3.8 ~~ https://github.com/center-key/puppeteer-browser-ready ~~ MIT License
|
|
2
2
|
|
|
3
3
|
import { Browser, HTTPResponse, Page } from 'puppeteer';
|
|
4
4
|
import { HTMLElement } from 'node-html-parser';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//! puppeteer-browser-ready v1.3.
|
|
1
|
+
//! puppeteer-browser-ready v1.3.8 ~~ https://github.com/center-key/puppeteer-browser-ready ~~ MIT License
|
|
2
2
|
|
|
3
3
|
import { parse } from 'node-html-parser';
|
|
4
4
|
import express from 'express';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "puppeteer-browser-ready",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.8",
|
|
4
4
|
"description": "Simple utility to go to a URL and wait for the HTTP response",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -68,24 +68,24 @@
|
|
|
68
68
|
"node-html-parser": "~7.0"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@eslint/js": "~9.
|
|
71
|
+
"@eslint/js": "~9.21",
|
|
72
72
|
"@types/express": "~5.0",
|
|
73
73
|
"@types/mocha": "~10.0",
|
|
74
|
-
"@types/node": "~22.
|
|
75
|
-
"@types/ws": "~8.
|
|
74
|
+
"@types/node": "~22.13",
|
|
75
|
+
"@types/ws": "~8.18",
|
|
76
76
|
"add-dist-header": "~1.4",
|
|
77
77
|
"assert-deep-strict-equal": "~1.2",
|
|
78
78
|
"copy-file-util": "~1.2",
|
|
79
79
|
"copy-folder-util": "~1.1",
|
|
80
|
-
"eslint": "~9.
|
|
80
|
+
"eslint": "~9.21",
|
|
81
81
|
"jshint": "~2.13",
|
|
82
|
-
"mocha": "~11.
|
|
82
|
+
"mocha": "~11.1",
|
|
83
83
|
"open": "~10.1",
|
|
84
|
-
"puppeteer": "~24.
|
|
84
|
+
"puppeteer": "~24.3",
|
|
85
85
|
"rimraf": "~6.0",
|
|
86
86
|
"run-scripts-util": "~1.3",
|
|
87
|
-
"typescript": "~5.
|
|
88
|
-
"typescript-eslint": "~8.
|
|
87
|
+
"typescript": "~5.8",
|
|
88
|
+
"typescript-eslint": "~8.26",
|
|
89
89
|
"w3c-html-validator": "~1.8"
|
|
90
90
|
}
|
|
91
91
|
}
|