markdown-link-check
Advanced tools
Comparing version 3.1.0 to 3.1.1
10
index.js
@@ -28,7 +28,9 @@ 'use strict'; | ||
async.mapLimit(linksCollection, 2, function (link, callback) { | ||
linkCheck(link, opts, callback); | ||
if (opts.showProgressBar) { | ||
bar.tick(); | ||
} | ||
linkCheck(link, opts, function (err, result) { | ||
if (opts.showProgressBar) { | ||
bar.tick(); | ||
} | ||
callback(err, result); | ||
}); | ||
}, callback); | ||
}; |
{ | ||
"name": "markdown-link-check", | ||
"version": "3.1.0", | ||
"version": "3.1.1", | ||
"description": "checks the all of the hyperlinks in a markdown text to determine if they are alive or dead", | ||
@@ -5,0 +5,0 @@ "bin": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
32332
133