Skip to content

Releases: szwacz/fs-jetpack

0.10.4

06 Dec 22:07
Compare
Choose a tag to compare
  • Fixed matcher edge cases, improved matcher tests (affects find() and copy() methods).

0.10.2

08 Nov 20:21
Compare
Choose a tag to compare
  • Fixed console.log(jetpack) for node v6.6.0 or newer.

0.10.1

01 Nov 21:52
Compare
Choose a tag to compare
  • Bugfixed case when copyAsync() was leaving open read stream if write stream errored.
  • Tests ported from jasmine to mocha.

0.10.0

17 Oct 16:53
Compare
Choose a tag to compare
  • copyAsync() uses only streams (much more memory efficient).
  • find() supports recursive option.

0.9.2

27 Jun 19:05
Compare
Choose a tag to compare
  • Updated third party dependencies to quell minimatch intallation warnings.

0.9.1

21 May 18:14
Compare
Choose a tag to compare
  • Bug-fixed jetpack.read('nonexistent_file', 'json').

0.9.0

10 May 20:00
Compare
Choose a tag to compare
  • (breaking change) read(), list(), inspect() and inspectTree() returns undefined instead of null if path doesn't exist.
  • More sane edge cases for dir(), file() and list().

0.8.0

09 Apr 07:43
Compare
Choose a tag to compare
  • (breaking change) find() now distinguishes between files and directories and by default searches only for files (previously searched for both).
  • (breaking change) find() no longer can be configured with returnAs parameter and returns always relative paths (previously returned absolute).
  • (breaking change) list() no longer accepts useInspect as a parameter. To achieve old behaviour use jetpack.list() with Array.map().
  • (deprecation) Don't do jetpack.read('sth', 'buf'), do jetpack.read('sth', 'buffer') instead.
  • remove(), list() and find() now can be called without provided path, and defaults to CWD in that case.

0.7.3

21 Mar 19:56
Compare
Choose a tag to compare
  • Bugfixed copy() with symlink overwrite

0.7.2

09 Mar 21:12
Compare
Choose a tag to compare
  • Fixed .dotfiles copying