Socket
Socket
Sign inDemoInstall

markdown-link-check

Package Overview
Dependencies
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

markdown-link-check - npm Package Compare versions

Comparing version 3.8.7 to 3.9.0

13

CHANGELOG.md
# Changes
## Version 3.9.0
* #149 add -V, --version command line flags (@tcort)
* #164 indent console output (@brandones)
* #170 pre-commit support (@janosh)
* #173 update docs (@karl-johan-grahn)
* #174 Symlink executable into PATH (@carlsmedstad)
* #177 upgrade command line tool from request to needle (@tcort)
## Version 3.8.8
* Update docs with respect to recursive scan
## Version 3.8.7

@@ -4,0 +17,0 @@

18

package.json
{
"name": "markdown-link-check",
"version": "3.8.7",
"version": "3.9.0",
"description": "checks the all of the hyperlinks in a markdown text to determine if they are alive or dead",

@@ -36,15 +36,15 @@ "bin": {

"dependencies": {
"async": "^3.2.0",
"chalk": "^4.1.0",
"async": "^3.2.2",
"chalk": "^4.1.2",
"commander": "^6.2.0",
"link-check": "^4.5.4",
"link-check": "^5.0.1",
"lodash": "^4.17.21",
"markdown-link-extractor": "^1.2.7",
"progress": "^2.0.3",
"request": "^2.88.2"
"markdown-link-extractor": "^1.3.0",
"needle": "^3.0.0",
"progress": "^2.0.3"
},
"devDependencies": {
"expect.js": "^0.3.1",
"mocha": "^8.3.2",
"jshint": "^2.12.0",
"mocha": "^9.1.3",
"jshint": "^2.13.1",
"express": "^4.17.1"

@@ -51,0 +51,0 @@ },

@@ -146,6 +146,11 @@ ![Test library workflow status](https://github.com/tcort/markdown-link-check/workflows/Test%20library/badge.svg)

Avoid using `find -exec` because it will swallow the error from each consecutive run.
Instead, use `xargs`:
```shell
find . -name \*.md -exec markdown-link-check {} \;
find . -name \*.md -print0 | xargs -0 -n1 markdown-link-check
```
There is an [open issue](https://github.com/tcort/markdown-link-check/issues/78) for allowing the tool to specify
multiple files on the command line.
#### Usage

@@ -164,2 +169,3 @@

-h, --help display help for command
-V, --version display version string (e.g. `1.2.3`)
```

@@ -166,0 +172,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc