nuxt-link-checker 2.0.0 → 2.0.2
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 +8 -13
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -3
- package/dist/runtime/plugin/view/Squiggle.vue +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,20 +14,15 @@ Find and magically fix links that may be negatively effecting your Nuxt sites SE
|
|
|
14
14
|
</p>
|
|
15
15
|
|
|
16
16
|
<p align="center">
|
|
17
|
-
<table
|
|
18
|
-
<thead>
|
|
19
|
-
<tr>
|
|
20
|
-
<th width="800px">
|
|
21
|
-
<p style="font-weight: 400;">
|
|
22
|
-
<i>Status:</i> <a href="https://nuxtseo.com/link-checker/releases/v2">v2 Released</a> 🎉</b>
|
|
23
|
-
</p>
|
|
24
|
-
<p style="font-weight: 400;">
|
|
25
|
-
<sub>Made possible by my <a href="https://github.com/sponsors/harlan-zw">Sponsor Program 💖</a><br> Keep up to date <a href="https://twitter.com/harlan_zw">@harlan_zw</a> 🐦 • Free support <a href="https://discord.gg/275MBUBvgP">Discord</a></sub><br>
|
|
26
|
-
</p>
|
|
27
|
-
</th>
|
|
28
|
-
</tr>
|
|
29
|
-
</thead>
|
|
17
|
+
<table>
|
|
30
18
|
<tbody>
|
|
19
|
+
<td align="center">
|
|
20
|
+
<img width="800" height="0" /><br>
|
|
21
|
+
<i>Status:</i> <a href="https://nuxtseo.com/link-checker/releases/v2">v2 Released</a> 🎉</b> <br>
|
|
22
|
+
<sup> Please report any issues 🐛</sup><br>
|
|
23
|
+
<sub>Made possible by my <a href="https://github.com/sponsors/harlan-zw">Sponsor Program 💖</a><br> Follow me <a href="https://twitter.com/harlan_zw">@harlan_zw</a> 🐦 • Join <a href="https://discord.gg/275MBUBvgP">Discord</a> for help</sub><br>
|
|
24
|
+
<img width="800" height="0" />
|
|
25
|
+
</td>
|
|
31
26
|
</tbody>
|
|
32
27
|
</table>
|
|
33
28
|
</p>
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -525,9 +525,7 @@ function setupDevToolsUI(options, resolve, nuxt = useNuxt()) {
|
|
|
525
525
|
ws.send("nuxt-link-checker:reset");
|
|
526
526
|
},
|
|
527
527
|
async applyLinkFixes(filepath, original, replacement) {
|
|
528
|
-
filepath = resolve(filepath);
|
|
529
|
-
if (!filepath.startsWith(nuxt.options.rootDir))
|
|
530
|
-
return;
|
|
528
|
+
filepath = resolve(nuxt.options.rootDir, filepath);
|
|
531
529
|
const contents = await readFile(filepath, "utf8");
|
|
532
530
|
const diff = generateLinkDiff(contents, original, replacement);
|
|
533
531
|
await writeFile(filepath, diff.code, "utf8");
|