Skip to content

Commit f7297cb

Browse files
author
Christopher J. Brody
committed
with no nodir: true option
use of no `nodir: true` option was introduced in 639c523 but it does not seem to be needed with some newer versions of globby
1 parent bb042d8 commit f7297cb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cli/util.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ function eachFilename(context, patterns, callback) {
410410

411411
try {
412412
const filePaths = globby
413-
.sync(patterns, { dot: true, nodir: true })
413+
.sync(patterns, { dot: true })
414414
.map(filePath => path.relative(process.cwd(), filePath));
415415

416416
if (filePaths.length === 0) {

0 commit comments

Comments
 (0)