nuxt-link-checker 5.0.8 → 5.0.9

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.
@@ -1 +1 @@
1
- <!DOCTYPE html><html><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1"><link rel="stylesheet" href="/__nuxt-link-checker/_nuxt/entry.B4-1WIQB.css" crossorigin><link rel="modulepreload" as="script" crossorigin href="/__nuxt-link-checker/_nuxt/B-WpH4Hs.js"><script type="module" src="/__nuxt-link-checker/_nuxt/B-WpH4Hs.js" crossorigin></script><script>"use strict";(()=>{const t=window,e=document.documentElement,c=["dark","light"],n=getStorageValue("localStorage","nuxt-color-mode")||"system";let i=n==="system"?u():n;const r=e.getAttribute("data-color-mode-forced");r&&(i=r),l(i),t["__NUXT_COLOR_MODE__"]={preference:n,value:i,getColorScheme:u,addColorScheme:l,removeColorScheme:d};function l(o){const s=""+o+"",a="";e.classList?e.classList.add(s):e.className+=" "+s,a&&e.setAttribute("data-"+a,o)}function d(o){const s=""+o+"",a="";e.classList?e.classList.remove(s):e.className=e.className.replace(new RegExp(s,"g"),""),a&&e.removeAttribute("data-"+a)}function f(o){return t.matchMedia("(prefers-color-scheme"+o+")")}function u(){if(t.matchMedia&&f("").media!=="not all"){for(const o of c)if(f(":"+o).matches)return o}return"light"}})();function getStorageValue(t,e){switch(t){case"localStorage":return window.localStorage.getItem(e);case"sessionStorage":return window.sessionStorage.getItem(e);case"cookie":return getCookie(e);default:return null}}function getCookie(t){const c=("; "+window.document.cookie).split("; "+t+"=");if(c.length===2)return c.pop()?.split(";").shift()}</script></head><body><div id="__nuxt" class="isolate"></div><div id="teleports"></div><script>window.__NUXT__={};window.__NUXT__.config={public:{},app:{baseURL:"/__nuxt-link-checker",buildId:"9e080331-58f1-498d-b498-e116797de4ab",buildAssetsDir:"/_nuxt/",cdnURL:""}}</script><script type="application/json" data-nuxt-data="nuxt-app" data-ssr="false" id="__NUXT_DATA__">[{"prerenderedAt":1,"serverRendered":2},1775736309134,false]</script></body></html>
1
+ <!DOCTYPE html><html><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1"><link rel="stylesheet" href="/__nuxt-link-checker/_nuxt/entry.BHWSa69F.css" crossorigin><link rel="modulepreload" as="script" crossorigin href="/__nuxt-link-checker/_nuxt/y7unhDtB.js"><script type="module" src="/__nuxt-link-checker/_nuxt/y7unhDtB.js" crossorigin></script><script>"use strict";(()=>{const t=window,e=document.documentElement,c=["dark","light"],n=getStorageValue("localStorage","nuxt-color-mode")||"system";let i=n==="system"?u():n;const r=e.getAttribute("data-color-mode-forced");r&&(i=r),l(i),t["__NUXT_COLOR_MODE__"]={preference:n,value:i,getColorScheme:u,addColorScheme:l,removeColorScheme:d};function l(o){const s=""+o+"",a="";e.classList?e.classList.add(s):e.className+=" "+s,a&&e.setAttribute("data-"+a,o)}function d(o){const s=""+o+"",a="";e.classList?e.classList.remove(s):e.className=e.className.replace(new RegExp(s,"g"),""),a&&e.removeAttribute("data-"+a)}function f(o){return t.matchMedia("(prefers-color-scheme"+o+")")}function u(){if(t.matchMedia&&f("").media!=="not all"){for(const o of c)if(f(":"+o).matches)return o}return"light"}})();function getStorageValue(t,e){switch(t){case"localStorage":return window.localStorage.getItem(e);case"sessionStorage":return window.sessionStorage.getItem(e);case"cookie":return getCookie(e);default:return null}}function getCookie(t){const c=("; "+window.document.cookie).split("; "+t+"=");if(c.length===2)return c.pop()?.split(";").shift()}</script></head><body><div id="__nuxt" class="isolate"></div><div id="teleports"></div><script>window.__NUXT__={};window.__NUXT__.config={public:{},app:{baseURL:"/__nuxt-link-checker",buildId:"eecfe483-dacc-4e85-91af-c4cc23bfceaa",buildAssetsDir:"/_nuxt/",cdnURL:""}}</script><script type="application/json" data-nuxt-data="nuxt-app" data-ssr="false" id="__NUXT_DATA__">[{"prerenderedAt":1,"serverRendered":2},1776065118164,false]</script></body></html>
package/dist/module.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "nuxt": ">=3.9.0"
5
5
  },
6
6
  "configKey": "linkChecker",
7
- "version": "5.0.8",
7
+ "version": "5.0.9",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "1.0.2",
10
10
  "unbuild": "3.6.1"
package/dist/module.mjs CHANGED
@@ -1868,6 +1868,7 @@ function truncateString(str, maxLength) {
1868
1868
  }
1869
1869
 
1870
1870
  const excludeUnderscorePathsRe = /^\/_/;
1871
+ const excludeLlmsTxtRe = /^\/llms(-[\w-]+)?\.txt$/;
1871
1872
  const module$1 = defineNuxtModule({
1872
1873
  meta: {
1873
1874
  name: "nuxt-link-checker",
@@ -1900,7 +1901,8 @@ const module$1 = defineNuxtModule({
1900
1901
  fetchTimeout: 1e4,
1901
1902
  failOnError: false,
1902
1903
  excludeLinks: [
1903
- excludeUnderscorePathsRe
1904
+ excludeUnderscorePathsRe,
1905
+ excludeLlmsTxtRe
1904
1906
  ],
1905
1907
  excludePages: [],
1906
1908
  skipInspections: []
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nuxt-link-checker",
3
3
  "type": "module",
4
- "version": "5.0.8",
4
+ "version": "5.0.9",
5
5
  "description": "Find and magically fix links that may be negatively effecting your Nuxt sites SEO.",
6
6
  "author": {
7
7
  "name": "Harlan Wilton",
@@ -55,8 +55,8 @@
55
55
  "diff": "^8.0.4",
56
56
  "fuse.js": "^7.3.0",
57
57
  "magic-string": "^0.30.21",
58
- "nuxt-site-config": "^4.0.7",
59
- "nuxtseo-shared": "^5.1.2",
58
+ "nuxt-site-config": "^4.0.8",
59
+ "nuxtseo-shared": "^5.1.3",
60
60
  "ofetch": "^1.5.1",
61
61
  "pathe": "^2.0.3",
62
62
  "pkg-types": "^2.3.0",
@@ -66,7 +66,7 @@
66
66
  "unstorage": "^1.17.5"
67
67
  },
68
68
  "devDependencies": {
69
- "@antfu/eslint-config": "^8.1.1",
69
+ "@antfu/eslint-config": "^8.2.0",
70
70
  "@nuxt/content": "^3.12.0",
71
71
  "@nuxt/devtools": "^4.0.0-alpha.4",
72
72
  "@nuxt/devtools-kit": "^4.0.0-alpha.4",
@@ -74,13 +74,13 @@
74
74
  "@nuxt/module-builder": "^1.0.2",
75
75
  "@nuxt/test-utils": "^4.0.2",
76
76
  "@nuxtjs/sitemap": "^8.0.12",
77
- "better-sqlite3": "^12.8.0",
77
+ "better-sqlite3": "^12.9.0",
78
78
  "bumpp": "^11.0.1",
79
79
  "eslint": "^10.2.0",
80
- "eslint-plugin-harlanzw": "^0.12.0",
80
+ "eslint-plugin-harlanzw": "^0.12.1",
81
81
  "execa": "^9.6.1",
82
82
  "nuxt": "^4.4.2",
83
- "nuxtseo-layer-devtools": "^5.1.2",
83
+ "nuxtseo-layer-devtools": "^5.1.3",
84
84
  "sirv": "^3.0.2",
85
85
  "std-env": "^4.0.0",
86
86
  "typescript": "6.0.2",
@@ -1 +0,0 @@
1
- {"id":"9e080331-58f1-498d-b498-e116797de4ab","timestamp":1775736299986,"prerendered":[]}