You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are new versions of fs-extra available from npm.
5.0.0
Significant refactor of copy() & copySync(), including breaking changes. No changes to other functions in this release.
Huge thanks to manidlou for doing most of the work on this release.
The filter option can no longer be a RegExp (must be a function). This was deprecated since fs-extra v1.0.0. #512
copy()'s filter option can now be a function that returns a Promise. #518
copy() & copySync() now use fs.copyFile()/fs.copyFileSync() in environments that support it (currently Node 8.5.0+). Older Node versions still get the old implementation. #505
There are new versions of fs-extra available from npm.
5.0.0
Significant refactor of
copy()
©Sync()
, including breaking changes. No changes to other functions in this release.Huge thanks to manidlou for doing most of the work on this release.
filter
option can no longer be a RegExp (must be a function). This was deprecated since fs-extra v1.0.0. #512copy()
'sfilter
option can now be a function that returns a Promise. #518copy()
©Sync()
now usefs.copyFile()
/fs.copyFileSync()
in environments that support it (currently Node 8.5.0+). Older Node versions still get the old implementation. #505dest
's parent if thefilter
function aborts thecopy()
operation. #517writeStream
not being closed if there was an error incopy()
. #516The text was updated successfully, but these errors were encountered: