crawlemon 0.2.0 → 0.3.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/README.md +17 -3
- package/dist/index.js +1637 -212
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -6,6 +6,20 @@ Crawlemon is the SEO safety layer between code and production. It works like an
|
|
|
6
6
|
|
|
7
7
|
No account, cloud connection, browser, AI provider, or API key is required.
|
|
8
8
|
|
|
9
|
+
## What is new in 0.3.1
|
|
10
|
+
|
|
11
|
+
- Canonical URLs are no longer required on `robots: noindex` pages.
|
|
12
|
+
- `<h1>` duplicates in mutually exclusive early-return branches (auth gates, loading/success/error states) are no longer reported.
|
|
13
|
+
- Empty `alt` on dynamic-src decorative images (e.g. favicons) is no longer flagged.
|
|
14
|
+
|
|
15
|
+
## What is new in 0.3.0
|
|
16
|
+
|
|
17
|
+
- Production-grade static resolution for Next.js: site config, `metadataBase`, title objects (`default`/`template`/`absolute`), and layout inheritance.
|
|
18
|
+
- Relative canonical URLs are resolved (not flagged) when a site origin is known.
|
|
19
|
+
- Dynamic metadata from `generateMetadata` is no longer reported as missing, and duplicate-title findings only fire for statically declared, indexable titles.
|
|
20
|
+
- Internal links and sitemaps are validated against dynamic routes and `generateStaticParams`.
|
|
21
|
+
- `<h1>` headings inside locally-imported components are detected; redirect-only pages are exempted.
|
|
22
|
+
|
|
9
23
|
## What is new in 0.2.0
|
|
10
24
|
|
|
11
25
|
- Stable deterministic audit and graph ordering.
|
|
@@ -209,11 +223,11 @@ jobs:
|
|
|
209
223
|
- name: Audit SEO
|
|
210
224
|
env:
|
|
211
225
|
CI: true
|
|
212
|
-
run: npx --yes crawlemon@0.
|
|
226
|
+
run: npx --yes crawlemon@0.3.1 audit
|
|
213
227
|
```
|
|
214
228
|
|
|
215
229
|
The exact package version is pinned so an upstream release cannot unexpectedly
|
|
216
|
-
change your CI result. Update `crawlemon@0.
|
|
230
|
+
change your CI result. Update `crawlemon@0.3.1` deliberately when you are ready
|
|
217
231
|
to adopt a newer version.
|
|
218
232
|
|
|
219
233
|
With `CI=true`, the workflow fails when Crawlemon finds at least one error-level
|
|
@@ -228,7 +242,7 @@ working directory:
|
|
|
228
242
|
working-directory: apps/web
|
|
229
243
|
env:
|
|
230
244
|
CI: true
|
|
231
|
-
run: npx --yes crawlemon@0.
|
|
245
|
+
run: npx --yes crawlemon@0.3.1 audit
|
|
232
246
|
```
|
|
233
247
|
|
|
234
248
|
## Zero-configuration detection
|