crawlemon 0.2.0 → 0.3.0
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 +11 -3
- package/dist/index.js +1554 -197
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -6,6 +6,14 @@ 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.0
|
|
10
|
+
|
|
11
|
+
- Production-grade static resolution for Next.js: site config, `metadataBase`, title objects (`default`/`template`/`absolute`), and layout inheritance.
|
|
12
|
+
- Relative canonical URLs are resolved (not flagged) when a site origin is known.
|
|
13
|
+
- Dynamic metadata from `generateMetadata` is no longer reported as missing, and duplicate-title findings only fire for statically declared, indexable titles.
|
|
14
|
+
- Internal links and sitemaps are validated against dynamic routes and `generateStaticParams`.
|
|
15
|
+
- `<h1>` headings inside locally-imported components are detected; redirect-only pages are exempted.
|
|
16
|
+
|
|
9
17
|
## What is new in 0.2.0
|
|
10
18
|
|
|
11
19
|
- Stable deterministic audit and graph ordering.
|
|
@@ -209,11 +217,11 @@ jobs:
|
|
|
209
217
|
- name: Audit SEO
|
|
210
218
|
env:
|
|
211
219
|
CI: true
|
|
212
|
-
run: npx --yes crawlemon@0.
|
|
220
|
+
run: npx --yes crawlemon@0.3.0 audit
|
|
213
221
|
```
|
|
214
222
|
|
|
215
223
|
The exact package version is pinned so an upstream release cannot unexpectedly
|
|
216
|
-
change your CI result. Update `crawlemon@0.
|
|
224
|
+
change your CI result. Update `crawlemon@0.3.0` deliberately when you are ready
|
|
217
225
|
to adopt a newer version.
|
|
218
226
|
|
|
219
227
|
With `CI=true`, the workflow fails when Crawlemon finds at least one error-level
|
|
@@ -228,7 +236,7 @@ working directory:
|
|
|
228
236
|
working-directory: apps/web
|
|
229
237
|
env:
|
|
230
238
|
CI: true
|
|
231
|
-
run: npx --yes crawlemon@0.
|
|
239
|
+
run: npx --yes crawlemon@0.3.0 audit
|
|
232
240
|
```
|
|
233
241
|
|
|
234
242
|
## Zero-configuration detection
|