Skip to content

Commit

Permalink
Upgrade @types package
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit0 committed Sep 1, 2022
1 parent c72c75c commit e50d7bf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 14 deletions.
14 changes: 7 additions & 7 deletions 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
Expand Up @@ -35,7 +35,7 @@
"devDependencies": {
"@types/lunr": "^2.3.4",
"@types/marked": "^4.0.6",
"@types/minimatch": "5.1.1",
"@types/minimatch": "5.1.2",
"@types/mocha": "^9.1.1",
"@types/node": "14",
"@typescript-eslint/eslint-plugin": "^5.36.1",
Expand Down
7 changes: 1 addition & 6 deletions src/lib/utils/fs.ts
Expand Up @@ -165,12 +165,7 @@ export function glob(
const childPath = dir.concat(child.name);
if (
mini.set.some((row) =>
mini.matchOne(
childPath,
// @ts-expect-error https://github.com/DefinitelyTyped/DefinitelyTyped/pull/62049
row,
/* partial */ true
)
mini.matchOne(childPath, row, /* partial */ true)
)
) {
dirs.push(childPath);
Expand Down

0 comments on commit e50d7bf

Please sign in to comment.