Skip to content

Commit e50d7bf

Browse files
committed
Upgrade @types package
1 parent c72c75c commit e50d7bf

File tree

3 files changed

+9
-14
lines changed

3 files changed

+9
-14
lines changed

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"devDependencies": {
3636
"@types/lunr": "^2.3.4",
3737
"@types/marked": "^4.0.6",
38-
"@types/minimatch": "5.1.1",
38+
"@types/minimatch": "5.1.2",
3939
"@types/mocha": "^9.1.1",
4040
"@types/node": "14",
4141
"@typescript-eslint/eslint-plugin": "^5.36.1",

src/lib/utils/fs.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -165,12 +165,7 @@ export function glob(
165165
const childPath = dir.concat(child.name);
166166
if (
167167
mini.set.some((row) =>
168-
mini.matchOne(
169-
childPath,
170-
// @ts-expect-error https://github.com/DefinitelyTyped/DefinitelyTyped/pull/62049
171-
row,
172-
/* partial */ true
173-
)
168+
mini.matchOne(childPath, row, /* partial */ true)
174169
)
175170
) {
176171
dirs.push(childPath);

0 commit comments

Comments
 (0)