@nurkamol/seo-audit 1.33.0 → 1.33.1
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/package.json +1 -1
- package/src/serve.mjs +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nurkamol/seo-audit",
|
|
3
|
-
"version": "1.33.
|
|
3
|
+
"version": "1.33.1",
|
|
4
4
|
"description": "Crawl a site's sitemap and check every page for SEO, metadata and structured-data problems that single-page graders miss. Zero dependencies.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
package/src/serve.mjs
CHANGED
|
@@ -43,6 +43,11 @@ export async function serve({ port = 4321, host = '127.0.0.1', maxPages, allowed
|
|
|
43
43
|
// person whose account it is; a deployed Worker leaves this unset, where
|
|
44
44
|
// `?search-console=` would hand a stranger somebody else's traffic data.
|
|
45
45
|
ALLOW_SEARCH_CONSOLE: '1',
|
|
46
|
+
// This is Node, so `node:tls` works and the certificate checks are real.
|
|
47
|
+
// Cloudflare leaves this unset and gets the `tls-not-checked` note instead.
|
|
48
|
+
// The macOS window talks to this server, and was being handed a hosted
|
|
49
|
+
// runtime's limitation along with a note claiming to be the hosted version.
|
|
50
|
+
CAN_READ_CERTIFICATES: '1',
|
|
46
51
|
};
|
|
47
52
|
|
|
48
53
|
const server = createServer(async (incoming, outgoing) => {
|