markdown_link_checker_sc 0.0.6 → 0.0.8
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/index.js +3 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -34,7 +34,9 @@ program
|
|
|
34
34
|
const options = program.opts();
|
|
35
35
|
|
|
36
36
|
if (options.log == "quick") {
|
|
37
|
-
|
|
37
|
+
for (const file of options.files) {
|
|
38
|
+
console.log(file);
|
|
39
|
+
}
|
|
38
40
|
}
|
|
39
41
|
|
|
40
42
|
const isMarkdown = (file) => path.extname(file).toLowerCase() === ".md";
|
|
@@ -402,7 +404,6 @@ function filterErrors(errors) {
|
|
|
402
404
|
return filteredErrors;
|
|
403
405
|
}
|
|
404
406
|
|
|
405
|
-
|
|
406
407
|
function outputErrors(results) {
|
|
407
408
|
//console.log(results.allErrors);
|
|
408
409
|
|