nuxt-link-checker 0.1.4 → 0.1.5
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/dist/module.json +1 -1
- package/dist/module.mjs +2 -0
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -108,6 +108,8 @@ const module = defineNuxtModule({
|
|
|
108
108
|
nitro.logger.log(chalk.gray('You can disable this by setting "linkChecker: { failOn404: false }" in your nuxt.config.ts.'));
|
|
109
109
|
process.exit(1);
|
|
110
110
|
}
|
|
111
|
+
} else {
|
|
112
|
+
nitro.logger.success("Looks good! No broken links found.");
|
|
111
113
|
}
|
|
112
114
|
});
|
|
113
115
|
});
|