Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
* master: (687 commits)
  Add fs-promise as fs-extra-promise alternative
  Move klaw to devDeps
  Remove walk() & walkSync()
  Refactor move() tests
  Cleanup lib/move/index.js
  Rename clobber to overwrite
  BREAKING: Drop Node v0.10 & io.js support
  BREAKING: Do not error when copy destination exists & clobber: false
  Use writeStream 'finish' event instead of 'close'. Fixes jprichardson#326
  copySync() should apply filter to directories like copy()
  lib/walk-sync: enhance walkSync to return path and stats
  Adding copy sync test for src file without write perms
  Fix remove() no-globbing tests to skip/pass on Windows
  Test that remove() ignores glob characters.
  Remove move()'s broken limit option
  Fix move clobber tests to work around graceful-fs bug.
  Fix incorrect anchor link
  README: Node v0.12 deprecation notice.
  1.0.0
  CHANGELOG: add issues
  ...
  • Loading branch information
bluelovers committed Jan 9, 2017
2 parents e4e295c + 3dc711f commit 99a00ad
Show file tree
Hide file tree
Showing 115 changed files with 7,435 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.nyc_output/
coverage/
node_modules/

.idea
*.iml
npm-debug.log
8 changes: 8 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.nyc_output/
coverage/
test/
.travis.yml
appveyor.yml
lib/**/__tests__/
test/readme.md
test.js
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
sudo: false
language: node_js
node_js:
- "4"
- "5"
- "6"
- "7"
matrix:
include:
- node_js: "7"
env: TEST_SUITE=lint
env:
- TEST_SUITE=unit
script: npm run-script $TEST_SUITE
after_success:
- if [ $TEST_SUITE = lint ]; then npm run coveralls; fi
Loading

0 comments on commit 99a00ad

Please sign in to comment.