Skip to content

Commit c96e7f1

Browse files
committed
fix: support minimatch@9
#122
1 parent 9d62425 commit c96e7f1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"license": "MIT",
1010
"dependencies": {
1111
"fast-glob": "3",
12-
"minimatch": "3 || 4 || 5 || 6 || 7 || 8",
12+
"minimatch": "3 || 4 || 5 || 6 || 7 || 8 || 9",
1313
"normalize-path": "3",
1414
"tslib": "1 || 2",
1515
"tsutils": "3"

packages/core/src/core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as ts from 'typescript'
22
import * as path from 'path'
3-
import minimatch from 'minimatch'
3+
import { minimatch } from 'minimatch'
44
import { getProjectRootNamesAndCompilerOptions } from './tsconfig'
55

66
import {

yarn.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1224,7 +1224,7 @@ mimic-fn@^2.1.0:
12241224
resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
12251225
integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
12261226

1227-
"minimatch@3 || 4 || 5 || 6 || 7 || 8", minimatch@^8.0.2:
1227+
"minimatch@3 || 4 || 5 || 6 || 7 || 8 || 9", minimatch@^8.0.2:
12281228
version "8.0.3"
12291229
resolved "https://registry.npmjs.org/minimatch/-/minimatch-8.0.3.tgz#0415cb9bb0c1d8ac758c8a673eb1d288e13f5e75"
12301230
integrity sha512-tEEvU9TkZgnFDCtpnrEYnPsjT7iUx42aXfs4bzmQ5sMA09/6hZY0jeZcGkXyDagiBOvkUjNo8Viom+Me6+2x7g==

0 commit comments

Comments
 (0)