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 0b6c892 commit 5a44a44Copy full SHA for 5a44a44
src/cli.ts
@@ -70,7 +70,7 @@ function isDir(path: string): boolean {
70
}
71
72
async function processGlob(argIn: string, argOut: string | undefined, argv: Partial<Options>) {
73
- const files = await glob(argIn) // execute glob pattern match
+ const files = await glob(argIn, {expandDirectories: false}) // execute glob pattern match
74
75
if (files.length === 0) {
76
throw ReferenceError(
0 commit comments