We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e828b50 commit 89ace2cCopy full SHA for 89ace2c
scripts/lib/glob.ts
@@ -1,7 +1,5 @@
1
import { globSync } from "tinyglobby";
2
3
-export function glob(patterns: string[], exclude = ["**/node_modules/**"]) {
4
- return globSync(patterns, {
5
- ignore: [...exclude],
6
- });
+export function glob(patterns: string[], ignore = ["**/node_modules/**"]) {
+ return globSync(patterns, { ignore });
7
}
0 commit comments