fs-extra v2.0.0 Release Notes

Release Date: 2017-01-16 // over 7 years ago
  • โœ‚ Removed

    • ๐Ÿ’ฅ BREAKING: Removed support for Node v0.12. The Node foundation stopped officially supporting it on Jan 1st, 2017.
    • ๐Ÿ’ฅ BREAKING: Remove walk() and walkSync(). walkSync() was only part of fs-extra for a little over two months. Use klaw instead of walk(), in fact, walk() was just ๐Ÿ‘€ an alias to klaw. For walkSync() use klaw-sync. See: [#338], [#339]

    ๐Ÿ”„ Changed

    • ๐Ÿ’ฅ BREAKING: Renamed clobber to overwrite. This affects copy(), copySync(), and move(). [#330], [#333]
    • ๐Ÿšš Moved docs, to docs/. [#340]

    ๐Ÿ›  Fixed

    • Apply filters to directories in copySync() like in copy(). [#324]
    • A specific condition when disk is under heavy use, copy() can fail. [#326]