Skip to content

Commit

Permalink
chore(CHANGELOG): prepare for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
tcort committed Nov 5, 2024
1 parent 3e23d62 commit e53c50c
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes

## Version 3.13.3

- fix: MODULE_NOT_FOUND error #368

## Version 3.13.2

- fix: MODULE_NOT_FOUND error #368
Expand Down
6 changes: 3 additions & 3 deletions markdown-link-check → bin/markdown-link-check
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
let chalk;
const fs = require('fs');
const { promisify } = require('util');
const markdownLinkCheck = promisify(require('./'));
const markdownLinkCheck = promisify(require('../'));
const needle = require('needle');
const path = require('path');
const pkg = require('./package.json');
const pkg = require('../package.json');
const { Command } = require('commander');
const program = new Command();
const { ProxyAgent } = require('proxy-agent');
const reporters = require('./reporters/index.js');
const reporters = require('../lib/reporters/index.js');

class Input {
constructor(filenameForOutput, stream, opts) {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "3.13.2",
"description": "checks the all of the hyperlinks in a markdown text to determine if they are alive or dead",
"bin": {
"markdown-link-check": "markdown-link-check"
"markdown-link-check": "bin/markdown-link-check"
},
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit e53c50c

Please sign in to comment.