puppeteer-browser-ready 1.3.2 → 1.3.3
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
|
@@ -5,7 +5,7 @@ _Simple utility to go to a URL and wait for the HTTP response_
|
|
|
5
5
|
|
|
6
6
|
[](https://github.com/center-key/puppeteer-browser-ready/blob/main/LICENSE.txt)
|
|
7
7
|
[](https://www.npmjs.com/package/puppeteer-browser-ready)
|
|
8
|
-
[](https://github.com/center-key/puppeteer-browser-ready/actions/workflows/run-spec-on-push.yaml)
|
|
9
9
|
|
|
10
10
|
**puppeteer-browser-ready** is a helper utility to reduce the amount of boilerplate code needed
|
|
11
11
|
to tell Puppeteer to visit a web page and and retrieve the HTML.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//! puppeteer-browser-ready v1.3.
|
|
1
|
+
//! puppeteer-browser-ready v1.3.3 ~~ 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.3 ~~ 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.3",
|
|
4
4
|
"description": "Simple utility to go to a URL and wait for the HTTP response",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -79,32 +79,32 @@
|
|
|
79
79
|
"test": "mocha spec/*.spec.js --timeout 7000 --retries 1"
|
|
80
80
|
},
|
|
81
81
|
"peerDependencies": {
|
|
82
|
-
"puppeteer": "^15 || ^16 || ^17 || ^18 || ^19.7 || ^20 || ^21 || ^22"
|
|
82
|
+
"puppeteer": "^15 || ^16 || ^17 || ^18 || ^19.7 || ^20 || ^21 || ^22.8"
|
|
83
83
|
},
|
|
84
84
|
"dependencies": {
|
|
85
|
-
"express": "~4.
|
|
85
|
+
"express": "~4.19",
|
|
86
86
|
"http-terminator": "~3.2",
|
|
87
87
|
"node-html-parser": "~6.1"
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
90
|
"@types/express": "~4.17",
|
|
91
91
|
"@types/mocha": "~10.0",
|
|
92
|
-
"@types/node": "~20.
|
|
92
|
+
"@types/node": "~20.12",
|
|
93
93
|
"@types/ws": "~8.5",
|
|
94
|
-
"@typescript-eslint/eslint-plugin": "~
|
|
95
|
-
"@typescript-eslint/parser": "~
|
|
94
|
+
"@typescript-eslint/eslint-plugin": "~7.8",
|
|
95
|
+
"@typescript-eslint/parser": "~7.8",
|
|
96
96
|
"add-dist-header": "~1.4",
|
|
97
97
|
"assert-deep-strict-equal": "~1.2",
|
|
98
|
-
"copy-file-util": "~1.
|
|
98
|
+
"copy-file-util": "~1.2",
|
|
99
99
|
"copy-folder-util": "~1.1",
|
|
100
|
-
"eslint": "
|
|
100
|
+
"eslint": "8.57.0",
|
|
101
101
|
"jshint": "~2.13",
|
|
102
|
-
"mocha": "~10.
|
|
103
|
-
"open": "~10.
|
|
104
|
-
"puppeteer": "~22.
|
|
102
|
+
"mocha": "~10.4",
|
|
103
|
+
"open": "~10.1",
|
|
104
|
+
"puppeteer": "~22.8",
|
|
105
105
|
"rimraf": "~5.0",
|
|
106
106
|
"run-scripts-util": "~1.2",
|
|
107
|
-
"typescript": "~5.
|
|
108
|
-
"w3c-html-validator": "~1.
|
|
107
|
+
"typescript": "~5.4",
|
|
108
|
+
"w3c-html-validator": "~1.8"
|
|
109
109
|
}
|
|
110
110
|
}
|