[Pkg-javascript-commits] [node-fs-extra] branch master updated (0b6ee63 -> a15d8d1)

Julien Puydt julien.puydt at laposte.net
Mon Jul 24 09:18:38 UTC 2017


This is an automated email from the git hooks/post-receive script.

jpuydt-guest pushed a change to branch master
in repository node-fs-extra.

      from  0b6ee63   Prepare for upload
       new  531b53d   New upstream version 3.0.1
       new  3d17982   Updated version 3.0.1 from 'upstream/3.0.1'
       new  0f01453   Package new upstream 3.0.1
       new  b371707   Bump standards-version to 4.0.0
       new  55b267b   Bump required version for node-jsonfile to 3.0.0
       new  931e4e8   Add depends on node-universalify
       new  a563a0e   Prepare for upload
       new  865a6fa   New upstream version 4.0.0
       new  a3d21d4   Updated version 4.0.0 from 'upstream/4.0.0'
       new  a15d8d1   New upstream release

The 10 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGELOG.md                                       |  83 ++++++++---
 README.md                                          |  43 +++---
 debian/changelog                                   |  13 ++
 debian/control                                     |   5 +-
 docs/copy.md                                       |  11 +-
 docs/emptyDir.md                                   |   9 ++
 docs/ensureDir.md                                  |  11 +-
 docs/ensureFile.md                                 |  11 +-
 docs/ensureLink.md                                 |  11 +-
 docs/ensureSymlink.md                              |  11 +-
 docs/fs-read-write.md                              |  39 ++++++
 docs/move.md                                       |  10 +-
 docs/outputFile.md                                 |  13 +-
 docs/outputJson-sync.md                            |   4 +-
 docs/outputJson.md                                 |  17 ++-
 docs/pathExists-sync.md                            |   3 +
 docs/pathExists.md                                 |  22 +++
 docs/readJson.md                                   |  22 ++-
 docs/remove.md                                     |  11 +-
 docs/writeJson-sync.md                             |   6 +-
 docs/writeJson.md                                  |  17 ++-
 lib/__tests__/promise.test.js                      |  27 ++++
 .../__tests__/copy-sync-preserve-time.test.js      |   6 +-
 lib/copy-sync/copy-file-sync.js                    |   2 +-
 lib/copy/__tests__/copy-preserve-time.test.js      |   6 +-
 lib/copy/copy.js                                   |   4 +-
 lib/copy/index.js                                  |   3 +-
 lib/empty/index.js                                 |   5 +-
 lib/ensure/__tests__/link.test.js                  |  24 ++++
 lib/ensure/__tests__/symlink.test.js               |  23 +++
 lib/ensure/file.js                                 |  15 +-
 lib/ensure/link.js                                 |  15 +-
 lib/ensure/symlink-paths.js                        |   4 +-
 lib/ensure/symlink.js                              |  16 ++-
 lib/{ => fs}/__tests__/fs-integration.test.js      |   2 +-
 lib/fs/__tests__/multi-param.test.js               | 154 +++++++++++++++++++++
 lib/fs/__tests__/mz.test.js                        |  50 +++++++
 lib/fs/index.js                                    | 101 ++++++++++++++
 lib/index.js                                       |  25 +---
 lib/json/__tests__/jsonfile-integration.test.js    |   7 +-
 lib/json/__tests__/output-json.test.js             |   8 ++
 lib/json/__tests__/spaces.test.js                  |  34 -----
 lib/json/index.js                                  |  11 +-
 lib/json/jsonfile.js                               |  12 +-
 lib/json/output-json.js                            |   5 +-
 lib/mkdirs/__tests__/mkdirp.test.js                |   3 +-
 lib/mkdirs/__tests__/perm.test.js                  |   3 +-
 lib/mkdirs/__tests__/perm_sync.test.js             |   6 +-
 lib/mkdirs/__tests__/race.test.js                  |   3 +-
 lib/mkdirs/__tests__/rel.test.js                   |   3 +-
 lib/mkdirs/__tests__/sync.test.js                  |   3 +-
 lib/mkdirs/__tests__/umask.test.js                 |   6 +-
 lib/mkdirs/index.js                                |  17 ++-
 lib/move-sync/__tests__/move-sync.test.js          |  13 +-
 lib/move-sync/index.js                             |   5 +-
 .../move-prevent-moving-into-itself.test.js}       | 145 +++++++++----------
 lib/move/__tests__/move.test.js                    |  33 ++---
 lib/move/index.js                                  |  85 +++++++-----
 lib/output/__tests__/output.test.js                |   5 +
 lib/output/index.js                                |   7 +-
 lib/path-exists/__tests__/path-exists-sync.test.js |  28 ++++
 lib/path-exists/__tests__/path-exists.test.js      |  40 ++++++
 lib/path-exists/index.js                           |  12 ++
 lib/remove/__tests__/remove.test.js                |   3 +-
 lib/remove/index.js                                |  14 +-
 lib/remove/rimraf.js                               |  28 +++-
 lib/util/buffer.js                                 |  11 ++
 package.json                                       |  11 +-
 68 files changed, 1070 insertions(+), 345 deletions(-)
 create mode 100644 docs/fs-read-write.md
 create mode 100644 docs/pathExists-sync.md
 create mode 100644 docs/pathExists.md
 create mode 100644 lib/__tests__/promise.test.js
 rename lib/{ => fs}/__tests__/fs-integration.test.js (96%)
 create mode 100644 lib/fs/__tests__/multi-param.test.js
 create mode 100644 lib/fs/__tests__/mz.test.js
 create mode 100644 lib/fs/index.js
 delete mode 100644 lib/json/__tests__/spaces.test.js
 copy lib/{move-sync/__tests__/move-sync-prevent-moving-into-itself.test.js => move/__tests__/move-prevent-moving-into-itself.test.js} (54%)
 create mode 100644 lib/path-exists/__tests__/path-exists-sync.test.js
 create mode 100644 lib/path-exists/__tests__/path-exists.test.js
 create mode 100644 lib/path-exists/index.js
 create mode 100644 lib/util/buffer.js

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-fs-extra.git



More information about the Pkg-javascript-commits mailing list