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.
Files changed (2) hide show
  1. package/index.js +3 -2
  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
- console.log(options.files);
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "markdown_link_checker_sc",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
4
4
  "description": "Markdown Link Checker",
5
5
  "main": "index.js",
6
6
  "scripts": {