Skip to content

Commit

Permalink
fix: move script back to its original location Fixes #370
Browse files Browse the repository at this point in the history
  • Loading branch information
tcort committed Nov 6, 2024
1 parent 834a4e2 commit 22af5b6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 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.6

- fix: move script back to its original location

## Version 3.13.5

- fix: MODULE_NOT_FOUND error #368
Expand Down
4 changes: 2 additions & 2 deletions bin/markdown-link-check → markdown-link-check
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
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');
Expand Down
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.5",
"description": "checks the all of the hyperlinks in a markdown text to determine if they are alive or dead",
"bin": {
"markdown-link-check": "bin/markdown-link-check"
"markdown-link-check": "markdown-link-check"
},
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 22af5b6

Please sign in to comment.