seo-lint-next 0.1.0 → 0.2.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/CHANGELOG.md +10 -0
- package/README.md +2 -0
- package/dist/cli.cjs +874 -61
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +874 -61
- package/dist/cli.js.map +1 -1
- package/dist/eslint.cjs +841 -53
- package/dist/eslint.cjs.map +1 -1
- package/dist/eslint.d.cts +45 -0
- package/dist/eslint.d.ts +45 -0
- package/dist/eslint.js +841 -53
- package/dist/eslint.js.map +1 -1
- package/dist/index.cjs +841 -53
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +841 -53
- package/dist/index.js.map +1 -1
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 7c9eba8: Add rules 11-25 covering language, viewport, client pages, hreflang, anchor text, 404/error boundaries, OG image dimensions, robots access to Next.js assets, breadcrumbs, next/head usage, SSR-disabled dynamic imports, next/font, redirect chains, and article dates.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 9e63161: Reduce false positives from real Next.js App Router projects by treating dynamic metadata as present, skipping private/noindex pages for public SEO rules, recognizing JSON-LD wrapper components, and avoiding metadata asset `X-Robots-Tag` warnings.
|
|
12
|
+
|
|
3
13
|
## 0.1.0
|
|
4
14
|
|
|
5
15
|
- Initial v1 package with the ESLint plugin, standalone CLI, and 10 App Router SEO rules.
|