Skip to content

Commit

Permalink
fix(deps): upgrade to glob 9.x (#542)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith committed Mar 25, 2023
1 parent b85bbb3 commit 18780cb
Show file tree
Hide file tree
Showing 3 changed files with 89 additions and 65 deletions.
146 changes: 87 additions & 59 deletions package-lock.json

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

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"chalk": "^5.0.0",
"escape-html": "^1.0.3",
"gaxios": "^5.0.0",
"glob": "^8.0.1",
"glob": "^9.3.2",
"htmlparser2": "^8.0.1",
"marked": "^4.0.3",
"meow": "^11.0.0",
Expand All @@ -36,7 +36,6 @@
},
"devDependencies": {
"@types/escape-html": "^1.0.1",
"@types/glob": "^8.0.0",
"@types/marked": "^4.0.0",
"@types/mime": "^3.0.0",
"@types/mocha": "^10.0.0",
Expand Down
5 changes: 1 addition & 4 deletions src/options.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import {promises as fs} from 'fs';
import util from 'util';
import path from 'path';
import globby from 'glob';

const glob = util.promisify(globby);
import glob from 'glob';

export interface UrlRewriteExpression {
pattern: RegExp;
Expand Down

0 comments on commit 18780cb

Please sign in to comment.