[Pkg-javascript-commits] [node-fs-extra] 08/10: Merge tag 'upstream/1.0.0'

Julien Puydt julien.puydt at laposte.net
Sun Nov 6 08:54:55 UTC 2016


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

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

commit dc7068766b976d8da61ebe3f8e736c5625f977cf
Merge: 648816c 4789760
Author: Julien Puydt <julien.puydt at laposte.net>
Date:   Sun Nov 6 09:38:20 2016 +0100

    Merge tag 'upstream/1.0.0'
    
    Upstream version 1.0.0
    
    # gpg: Signature faite le dim. 06 nov. 2016 09:38:20 CET
    # gpg:                avec la clef RSA 04C53BD7FE030551
    # gpg:                issuer "julien.puydt at laposte.net"
    # gpg: Bonne signature de « Julien Puydt (Debian) <julien.puydt at laposte.net> » [inconnu]
    # gpg: Attention : cette clef n'est pas certifiée avec une signature de confiance.
    # gpg:             Rien n'indique que la signature appartient à son propriétaire.
    # Empreinte de clef principale : 812E EFD8 A3FB A4AC E4DF  114B 04C5 3BD7 FE03 0551

 .gitignore                                         |   4 +-
 .npmignore                                         |   7 +-
 .travis.yml                                        |  22 +-
 CHANGELOG.md                                       | 475 ++++++++++++++++++++-
 LICENSE                                            |   8 +-
 README.md                                          | 392 ++++++++++++-----
 appveyor.yml                                       |  26 ++
 lib/__tests__/fs-integration.test.js               |  34 ++
 lib/copy-sync/__tests__/broken-symlink.test.js     |  59 +++
 lib/copy-sync/__tests__/copy-sync-dir.test.js      | 131 ++++++
 lib/copy-sync/__tests__/copy-sync-file.test.js     | 180 ++++++++
 .../__tests__/copy-sync-preserve-time.test.js      |  60 +++
 .../copy-sync/__tests__/fixtures}/a-file           |   0
 .../__tests__/fixtures}/a-folder/another-file      |   0
 .../fixtures}/a-folder/another-folder/file3        |   0
 lib/copy-sync/__tests__/symlink.test.js            |  76 ++++
 lib/copy-sync/copy-file-sync.js                    |  42 ++
 lib/copy-sync/copy-sync.js                         |  56 +++
 lib/copy-sync/index.js                             |   3 +
 lib/copy.js                                        |  99 -----
 lib/copy/__tests__/async/copy-gh-89.test.js        |  54 +++
 lib/copy/__tests__/copy-dev-null.test.js           |  34 ++
 lib/copy/__tests__/copy-permissions.test.js        | 108 +++++
 lib/copy/__tests__/copy-preserve-time.test.js      |  68 +++
 lib/copy/__tests__/copy.test.js                    | 193 +++++++++
 .../move => lib/copy/__tests__/fixtures}/a-file    |   0
 .../copy/__tests__/fixtures}/a-folder/another-file |   0
 .../fixtures}/a-folder/another-folder/file3        |   0
 lib/copy/__tests__/ncp/README.md                   |   1 +
 lib/copy/__tests__/ncp/broken-symlink.test.js      |  58 +++
 .../__tests__}/ncp/fixtures/modified-files/out/a   |   0
 .../__tests__}/ncp/fixtures/modified-files/src/a   |   0
 .../__tests__}/ncp/fixtures/regular-fixtures/out/a |   0
 .../__tests__}/ncp/fixtures/regular-fixtures/out/b |   0
 .../__tests__}/ncp/fixtures/regular-fixtures/out/c |   0
 .../__tests__}/ncp/fixtures/regular-fixtures/out/d |   0
 .../__tests__}/ncp/fixtures/regular-fixtures/out/e |   0
 .../__tests__}/ncp/fixtures/regular-fixtures/out/f |   0
 .../ncp/fixtures/regular-fixtures/out/sub/a        |   0
 .../ncp/fixtures/regular-fixtures/out/sub/b        |   0
 .../__tests__}/ncp/fixtures/regular-fixtures/src/a |   0
 .../__tests__}/ncp/fixtures/regular-fixtures/src/b |   0
 .../__tests__}/ncp/fixtures/regular-fixtures/src/c |   0
 .../__tests__}/ncp/fixtures/regular-fixtures/src/d |   0
 .../__tests__}/ncp/fixtures/regular-fixtures/src/e |   0
 .../__tests__}/ncp/fixtures/regular-fixtures/src/f |   0
 .../ncp/fixtures/regular-fixtures/src/sub/a        |   0
 .../ncp/fixtures/regular-fixtures/src/sub/b        |   0
 lib/copy/__tests__/ncp/ncp-error-perm.test.js      |  50 +++
 lib/copy/__tests__/ncp/ncp.test.js                 | 171 ++++++++
 lib/copy/__tests__/ncp/symlink.test.js             |  78 ++++
 lib/copy/copy.js                                   |  50 +++
 lib/copy/index.js                                  |   3 +
 lib/{_copy.js => copy/ncp.js}                      | 186 ++++----
 lib/empty/__tests__/empty-dir-sync.test.js         |  54 +++
 lib/empty/__tests__/empty-dir.test.js              |  63 +++
 lib/empty/index.js                                 |  47 ++
 {test => lib/ensure/__tests__}/create.test.js      |  39 +-
 {test => lib/ensure/__tests__}/ensure.test.js      |  66 +--
 lib/ensure/__tests__/link.test.js                  | 223 ++++++++++
 lib/ensure/__tests__/symlink-paths.test.js         |  91 ++++
 lib/ensure/__tests__/symlink-type.test.js          | 122 ++++++
 lib/ensure/__tests__/symlink.test.js               | 450 +++++++++++++++++++
 lib/{create.js => ensure/file.js}                  |  20 +-
 lib/ensure/index.js                                |  21 +
 lib/ensure/link.js                                 |  58 +++
 lib/ensure/symlink-paths.js                        |  96 +++++
 lib/ensure/symlink-type.js                         |  27 ++
 lib/ensure/symlink.js                              |  62 +++
 lib/index.js                                       | 108 ++---
 lib/json.js                                        |  31 --
 lib/json/__tests__/jsonfile-integration.test.js    |  39 ++
 lib/json/__tests__/output-json-sync.test.js        |  48 +++
 lib/json/__tests__/output-json.test.js             |  53 +++
 {test => lib/json/__tests__}/read.test.js          |  25 +-
 lib/json/__tests__/spaces.test.js                  |  34 ++
 lib/json/index.js                                  |   9 +
 lib/json/jsonfile.js                               |  14 +
 lib/json/output-json-sync.js                       |  16 +
 lib/json/output-json.js                            |  24 ++
 lib/mkdir.js                                       | 103 -----
 lib/mkdirs/__tests__/chmod.test.js                 |  67 +++
 lib/mkdirs/__tests__/clobber.test.js               |  53 +++
 lib/mkdirs/__tests__/issue-209.test.js             |  38 ++
 lib/mkdirs/__tests__/issue-93.test.js              |  36 ++
 {test => lib/mkdirs/__tests__}/mkdir.test.js       |  31 +-
 lib/mkdirs/__tests__/mkdirp.test.js                |  51 +++
 lib/mkdirs/__tests__/opts-undef.test.js            |  29 ++
 lib/mkdirs/__tests__/perm.test.js                  |  54 +++
 lib/mkdirs/__tests__/perm_sync.test.js             |  58 +++
 lib/mkdirs/__tests__/race.test.js                  |  68 +++
 lib/mkdirs/__tests__/rel.test.js                   |  61 +++
 lib/mkdirs/__tests__/return.test.js                |  41 ++
 lib/mkdirs/__tests__/return_sync.test.js           |  39 ++
 lib/mkdirs/__tests__/root.test.js                  |  27 ++
 lib/mkdirs/__tests__/sync.test.js                  |  58 +++
 lib/mkdirs/__tests__/umask.test.js                 |  80 ++++
 lib/mkdirs/index.js                                |   9 +
 lib/mkdirs/mkdirs-sync.js                          |  57 +++
 lib/mkdirs/mkdirs.js                               |  61 +++
 lib/mkdirs/win32.js                                |  24 ++
 .../move => lib/move/__tests__/fixtures}/a-file    |   0
 .../move/__tests__/fixtures}/a-folder/another-file |   0
 .../fixtures}/a-folder/another-folder/file3        |   0
 lib/move/__tests__/move-clobber.test.js            |  68 +++
 lib/move/__tests__/move.test.js                    | 285 +++++++++++++
 lib/{move.js => move/index.js}                     |  91 ++--
 {test => lib/output/__tests__}/output.test.js      |  39 +-
 lib/{output.js => output/index.js}                 |  13 +-
 lib/remove.js                                      |  14 -
 lib/remove/__tests__/remove-dir.test.js            |  27 ++
 lib/remove/__tests__/remove-file.test.js           |   1 +
 lib/remove/__tests__/remove-sync-dir.test.js       |  31 ++
 lib/remove/__tests__/remove-sync-file.test.js      |  26 ++
 lib/remove/__tests__/remove.test.js                |  84 ++++
 lib/remove/index.js                                |  15 +
 lib/remove/rimraf.js                               | 301 +++++++++++++
 lib/util/__tests__/utimes.test.js                  | 122 ++++++
 lib/util/assign.js                                 |  14 +
 lib/util/utimes.js                                 |  70 +++
 .../walk-sync/__tests__/fixtures/dir1/file1_2      |   0
 .../__tests__/fixtures/dir2/dir2_1/file2_1_1       |   0
 .../c => lib/walk-sync/__tests__/fixtures/file1    |   0
 lib/walk-sync/__tests__/walkSync.test.js           |  41 ++
 lib/walk-sync/index.js                             |  20 +
 lib/walk/__tests__/fixtures.json                   |   7 +
 lib/walk/__tests__/walk.test.js                    |  73 ++++
 lib/walk/index.js                                  |   5 +
 package.json                                       |  32 +-
 test.js                                            |  30 ++
 test/copy-sync.test.js                             | 223 ----------
 test/copy.test.js                                  | 238 -----------
 test/fs-integration.test.js                        |  23 -
 test/json.test.js                                  |  50 ---
 test/lib/util.js                                   |  36 --
 test/mkdirp/README.md                              |   1 -
 test/mkdirp/chmod.test.js                          |  52 ---
 test/mkdirp/clobber.test.js                        |  41 --
 test/mkdirp/mkdirp.test.js                         |  34 --
 test/mkdirp/opts_fs.test.js                        |  32 --
 test/mkdirp/opts_fs_sync.test.js                   |  30 --
 test/mkdirp/perm.test.js                           |  41 --
 test/mkdirp/perm_sync.js                           |  46 --
 test/mkdirp/race.test.js                           |  42 --
 test/mkdirp/rel.test.js                            |  32 --
 test/mkdirp/return.test.js                         |  29 --
 test/mkdirp/return_sync.test.js                    |  27 --
 test/mkdirp/root.test.js                           |  22 -
 test/mkdirp/sync.test.js                           |  31 --
 test/mkdirp/umask.test.js                          |  75 ----
 test/mocha.opts                                    |   5 -
 test/move.test.js                                  | 262 ------------
 .../broken-symlink-fixtures/src/broken-symlink     |   1 -
 test/ncp/fixtures/regular-fixtures/out/sub/z       |   1 -
 test/ncp/fixtures/regular-fixtures/out/z           |   1 -
 .../fixtures/symlink-fixtures/out/dir-symlink/bar  |   1 -
 test/ncp/fixtures/symlink-fixtures/out/dir/bar     |   1 -
 .../ncp/fixtures/symlink-fixtures/out/file-symlink |   1 -
 test/ncp/fixtures/symlink-fixtures/out/foo         |   1 -
 test/ncp/fixtures/symlink-fixtures/src/dir-symlink |   1 -
 test/ncp/fixtures/symlink-fixtures/src/dir/bar     |   1 -
 .../ncp/fixtures/symlink-fixtures/src/file-symlink |   1 -
 test/ncp/fixtures/symlink-fixtures/src/foo         |   1 -
 test/ncp/ncp.test.js                               | 198 ---------
 test/readme.md                                     |   1 +
 test/remove.test.js                                | 124 ------
 166 files changed, 6318 insertions(+), 2410 deletions(-)

-- 
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