Comparing version 6.0.0 to 6.0.1
@@ -82,3 +82,3 @@ "use strict"; | ||
results.push(build(entry, path, stats)); | ||
if (entry.isDirectory()) results.push(...await rrdir(path, opts)); | ||
if (entry.isDirectory()) results.push(...await rrdir(path, opts, {includeMatcher, excludeMatcher})); | ||
} | ||
@@ -125,3 +125,3 @@ | ||
results.push(build(entry, path, stats)); | ||
if (entry.isDirectory()) results.push(...rrdir.sync(path, opts)); | ||
if (entry.isDirectory()) results.push(...rrdir.sync(path, opts, {includeMatcher, excludeMatcher})); | ||
} | ||
@@ -167,4 +167,4 @@ | ||
yield build(entry, path, stats); | ||
if (entry.isDirectory()) yield* await rrdir.stream(path, opts); | ||
if (entry.isDirectory()) yield* await rrdir.stream(path, opts, {includeMatcher, excludeMatcher}); | ||
} | ||
}; |
{ | ||
"name": "rrdir", | ||
"version": "6.0.0", | ||
"version": "6.0.1", | ||
"description": "Recursive directory reader with a delightful API", | ||
@@ -5,0 +5,0 @@ "author": "silverwind <me@silverwind.io>", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8917