3.3.0
Breaking Changes:
- Due to performance reasons, I had to remove passing an
Options
object through the constructor. In place of that, now there is a newcrawlWithOptions
that takes anOptions
object in its second parameter:
new fdir().crawlWithOptions("path/to/dir", { includeBasePath: true }).sync();
Fixes:
- fdir will now properly handle the case where
picomatch
is not installed.
Improvements:
- Some minor memory improvements were made which should improve the performance slightly.