[Pkg-javascript-commits] [node-fs-extra] branch master updated (817c21f -> 2bbdd17)
Julien Puydt
julien.puydt at laposte.net
Sat Mar 25 08:50:55 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 817c21f Prepare for upload
new 02570a3 New upstream version 2.1.2
new 6099a3b Merge tag 'upstream/2.1.2'
new 2bbdd17 Package new upstream release 2.1.2
The 3 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 | 29 +-
README.md | 52 +--
debian/changelog | 6 +
docs/copy-sync.md | 37 +++
docs/copy.md | 44 ++-
docs/{emptyDir.md => emptyDir-sync.md} | 12 +-
docs/emptyDir.md | 11 +-
docs/ensureDir-sync.md | 17 +
docs/ensureDir.md | 10 +-
docs/ensureFile-sync.md | 17 +
docs/ensureFile.md | 10 +-
docs/ensureLink-sync.md | 17 +
docs/ensureLink.md | 13 +-
docs/ensureSymlink-sync.md | 18 ++
docs/ensureSymlink.md | 14 +-
docs/move-sync.md | 24 ++
docs/move.md | 26 +-
docs/outputFile-sync.md | 19 ++
docs/outputFile.md | 16 +-
docs/outputJson-sync.md | 22 ++
docs/outputJson.md | 16 +-
docs/readJson-sync.md | 33 ++
docs/readJson.md | 27 +-
docs/remove-sync.md | 16 +
docs/remove.md | 17 +-
docs/writeJson-sync.md | 21 ++
docs/writeJson.md | 14 +-
lib/__tests__/fs-integration.test.js | 30 +-
lib/copy-sync/__tests__/broken-symlink.test.js | 54 ++--
lib/copy-sync/__tests__/copy-sync-dir.test.js | 179 +++++++----
lib/copy-sync/__tests__/copy-sync-file.test.js | 159 +++++----
.../__tests__/copy-sync-preserve-time.test.js | 46 +--
lib/copy-sync/__tests__/symlink.test.js | 50 +--
lib/copy-sync/copy-file-sync.js | 26 +-
lib/copy-sync/copy-sync.js | 32 +-
lib/copy/__tests__/async/copy-gh-89.test.js | 40 +--
lib/copy/__tests__/copy-dev-null.test.js | 34 +-
lib/copy/__tests__/copy-permissions.test.js | 66 ++--
lib/copy/__tests__/copy-preserve-time.test.js | 54 ++--
lib/copy/__tests__/copy.test.js | 319 +++++++++++++------
lib/copy/__tests__/ncp/broken-symlink.test.js | 45 +--
lib/copy/__tests__/ncp/ncp-error-perm.test.js | 38 +--
lib/copy/__tests__/ncp/ncp.test.js | 145 ++++-----
lib/copy/__tests__/ncp/symlink.test.js | 54 ++--
lib/copy/copy.js | 30 +-
lib/copy/ncp.js | 2 +-
lib/empty/__tests__/empty-dir-sync.test.js | 34 +-
lib/empty/__tests__/empty-dir.test.js | 40 +--
lib/empty/index.js | 28 +-
lib/ensure/__tests__/create.test.js | 54 ++--
lib/ensure/__tests__/ensure.test.js | 86 ++---
lib/ensure/__tests__/link.test.js | 184 +++++------
lib/ensure/__tests__/symlink-paths.test.js | 66 ++--
lib/ensure/__tests__/symlink-type.test.js | 64 ++--
lib/ensure/__tests__/symlink.test.js | 354 ++++++++++-----------
lib/ensure/file.js | 24 +-
lib/ensure/index.js | 8 +-
lib/ensure/link.js | 30 +-
lib/ensure/symlink-paths.js | 27 +-
lib/ensure/symlink-type.js | 14 +-
lib/ensure/symlink.js | 48 +--
lib/index.js | 21 +-
lib/json/__tests__/jsonfile-integration.test.js | 34 +-
lib/json/__tests__/output-json-sync.test.js | 45 +--
lib/json/__tests__/output-json.test.js | 47 +--
lib/json/__tests__/read.test.js | 39 ++-
lib/json/__tests__/spaces.test.js | 30 +-
lib/json/index.js | 4 +-
lib/json/jsonfile.js | 4 +-
lib/json/output-json-sync.js | 12 +-
lib/json/output-json.js | 16 +-
lib/mkdirs/__tests__/chmod.test.js | 62 ++--
lib/mkdirs/__tests__/clobber.test.js | 40 +--
lib/mkdirs/__tests__/issue-209.test.js | 26 +-
lib/mkdirs/__tests__/issue-93.test.js | 24 +-
lib/mkdirs/__tests__/mkdir.test.js | 50 +--
lib/mkdirs/__tests__/mkdirp.test.js | 44 +--
lib/mkdirs/__tests__/opts-undef.test.js | 26 +-
lib/mkdirs/__tests__/perm.test.js | 42 +--
lib/mkdirs/__tests__/perm_sync.test.js | 44 +--
lib/mkdirs/__tests__/race.test.js | 55 ++--
lib/mkdirs/__tests__/rel.test.js | 50 +--
lib/mkdirs/__tests__/return.test.js | 36 +--
lib/mkdirs/__tests__/return_sync.test.js | 34 +-
lib/mkdirs/__tests__/root.test.js | 22 +-
lib/mkdirs/__tests__/sync.test.js | 43 +--
lib/mkdirs/__tests__/umask.test.js | 54 ++--
lib/mkdirs/mkdirs-sync.js | 18 +-
lib/mkdirs/mkdirs.js | 22 +-
lib/mkdirs/win32.js | 13 +-
.../move-sync-prevent-moving-into-itself.test.js | 189 +++++++++++
lib/move-sync/__tests__/move-sync.test.js | 352 ++++++++++++++++++++
lib/move-sync/index.js | 117 +++++++
lib/move/__tests__/move.test.js | 230 +++++++------
lib/move/index.js | 74 +++--
lib/output/__tests__/output.test.js | 54 ++--
lib/output/index.js | 20 +-
lib/remove/__tests__/remove-dir.test.js | 26 +-
lib/remove/__tests__/remove-sync-dir.test.js | 24 +-
lib/remove/__tests__/remove-sync-file.test.js | 24 +-
lib/remove/__tests__/remove.test.js | 72 ++---
lib/remove/index.js | 10 +-
lib/remove/rimraf.js | 89 +++---
lib/util/__tests__/utimes.test.js | 94 +++---
lib/util/assign.js | 10 +-
lib/util/utimes.js | 42 +--
package.json | 4 +-
test.js | 31 +-
108 files changed, 3331 insertions(+), 2110 deletions(-)
create mode 100644 docs/copy-sync.md
copy docs/{emptyDir.md => emptyDir-sync.md} (55%)
create mode 100644 docs/ensureDir-sync.md
create mode 100644 docs/ensureFile-sync.md
create mode 100644 docs/ensureLink-sync.md
create mode 100644 docs/ensureSymlink-sync.md
create mode 100644 docs/move-sync.md
create mode 100644 docs/outputFile-sync.md
create mode 100644 docs/outputJson-sync.md
create mode 100644 docs/readJson-sync.md
create mode 100644 docs/remove-sync.md
create mode 100644 docs/writeJson-sync.md
create mode 100644 lib/move-sync/__tests__/move-sync-prevent-moving-into-itself.test.js
create mode 100644 lib/move-sync/__tests__/move-sync.test.js
create mode 100644 lib/move-sync/index.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