@html-validate/puppeteer-fetch 2.1.12 → 2.1.13
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/dist/index.js +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -3197,7 +3197,7 @@ var import_node_path = __toESM(require("node:path"));
|
|
|
3197
3197
|
var import_argparse = __toESM(require_argparse());
|
|
3198
3198
|
var import_puppeteer = require("puppeteer");
|
|
3199
3199
|
function normalizeUrl(url) {
|
|
3200
|
-
if (
|
|
3200
|
+
if (url.includes("://")) {
|
|
3201
3201
|
return url;
|
|
3202
3202
|
} else {
|
|
3203
3203
|
return `https://${url}`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@html-validate/puppeteer-fetch",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.13",
|
|
4
4
|
"description": "Fetch HTML source from a webpage using Chrome as backend",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"puppeteer",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"puppeteer-fetch.js"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"puppeteer": "24.
|
|
30
|
+
"puppeteer": "24.38.0"
|
|
31
31
|
},
|
|
32
32
|
"engines": {
|
|
33
|
-
"node": ">=
|
|
33
|
+
"node": "^20.11 || >= 22.16",
|
|
34
34
|
"npm": ">= 7"
|
|
35
35
|
},
|
|
36
36
|
"publishConfig": {
|