Skip to content

Commit 22af5b6

Browse files
committed
fix: move script back to its original location Fixes #370
1 parent 834a4e2 commit 22af5b6

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes
22

3+
## Version 3.13.6
4+
5+
- fix: move script back to its original location
6+
37
## Version 3.13.5
48

59
- fix: MODULE_NOT_FOUND error #368

bin/markdown-link-check renamed to markdown-link-check

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
let chalk;
66
const fs = require('fs');
77
const { promisify } = require('util');
8-
const markdownLinkCheck = promisify(require('../'));
8+
const markdownLinkCheck = promisify(require('.'));
99
const needle = require('needle');
1010
const path = require('path');
11-
const pkg = require('../package.json');
11+
const pkg = require('./package.json');
1212
const { Command } = require('commander');
1313
const program = new Command();
1414
const { ProxyAgent } = require('proxy-agent');

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "3.13.5",
44
"description": "checks the all of the hyperlinks in a markdown text to determine if they are alive or dead",
55
"bin": {
6-
"markdown-link-check": "bin/markdown-link-check"
6+
"markdown-link-check": "markdown-link-check"
77
},
88
"main": "index.js",
99
"scripts": {

0 commit comments

Comments
 (0)