Skip to content

Commit e53c50c

Browse files
committed
chore(CHANGELOG): prepare for new release
1 parent 3e23d62 commit e53c50c

File tree

7 files changed

+9
-5
lines changed

7 files changed

+9
-5
lines changed

CHANGELOG.md

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

3+
## Version 3.13.3
4+
5+
- fix: MODULE_NOT_FOUND error #368
6+
37
## Version 3.13.2
48

59
- fix: MODULE_NOT_FOUND error #368

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
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');
15-
const reporters = require('./reporters/index.js');
15+
const reporters = require('../lib/reporters/index.js');
1616

1717
class Input {
1818
constructor(filenameForOutput, stream, opts) {
File renamed without changes.
File renamed without changes.
File renamed without changes.

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.2",
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": "markdown-link-check"
6+
"markdown-link-check": "bin/markdown-link-check"
77
},
88
"main": "index.js",
99
"scripts": {

0 commit comments

Comments
 (0)