Releases: szwacz/fs-jetpack
Releases · szwacz/fs-jetpack
5.1.0
filter
function of find()
method now receives also absolutePath
property of each file
5.0.0
- (breaking change) Dropped support for all node.js engines older than v14
- (possibly breaking change)
inspect("some-file", { times: true })
now will return also birthTime
of a file
- (possibly breaking change) Under the hood switched from
rimraf
library to using node-native recursive files removal
4.3.1
- Fixed
find()
crash when stumbled upon invalid symlink.
4.3.0
find()
accepts filter
function that allows you to perform more refined filtering of the results
4.2.0
- For
find()
method you don't need to declare marching
property, will default to "*"
then (thanks @gutenye)
4.1.0
findAsync()
is now 5 times faster, and find()
2 times faster
inspectTree()
now sorts results alphabetically, directories firsts, files second
- Refactored internals of methods
find()
, copy()
and inspectTree()
4.0.1
inspectTree()
behaves better in concurrency terms (opens only few files at once)
4.0.0
- Package published to npm registry now contains only the essential files (e.g. no tests as shipped), to make the smallest footprint possible
3.2.0
- Ability to create temporary directories with
tmpDir()
method
0.10.5
- Fixed
find()
bug when directories is set to true and only negation glob is used.