Skip to content

Commit

Permalink
fix(markdown-link-check): commander breakage
Browse files Browse the repository at this point in the history
Fixes #323
  • Loading branch information
tcort committed May 22, 2024
1 parent 9401580 commit 7d83c78
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion markdown-link-check
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ const markdownLinkCheck = require('./');
const needle = require('needle');
const path = require('path');
const pkg = require('./package.json');
const program = require('commander');
const { Command } = require('commander');
const program = new Command();
const url = require('url');
const { ProxyAgent } = require('proxy-agent');

Expand Down

0 comments on commit 7d83c78

Please sign in to comment.