- removed node 0.6 support
- added node 0.10 support
- upgraded to latest
ncp
andrimraf
. - optional
graceful-fs
support. Closes #17
- Removed
readTextFile
. - Renamed
readJSONFile
toreadJSON
andreadJson
, same with write. - Restructured documentation a bit. Added roadmap.
- Set default spaces in
jsonfile
from 4 to 2. - Updated
testutil
deps for tests. - Renamed
touch()
tocreateFile()
- Added
outputFile()
andoutputFileSync()
- Changed creation of testing diretories so the /tmp dir is not littered.
- Added
readTextFile()
andreadTextFileSync()
.
- Added
touch()
andtouchSync()
methods.
- Fixed some stray globals.
- Removed all CoffeeScript from tests.
- Renamed
mkdir
tomkdirs
/mkdirp
.
- Updated
rimraf
dep.
- Rewrote module into JavaScript. (Must still rewrite tests into JavaScript)
- Added all methods of [jsonfile][https://github.com/jprichardson/node-jsonfile]
- Added Travis-CI.
- Added method
readJSONFile
.
- Bug fix:
deleteSync()
didn't exist. - Verified Node v0.8 compatibility.
- Fixed bug in
remove()
/delete()
that wouldn't execute the function if a callback wasn't passed.
- Renamed
copyFile()
tocopy()
.copy()
can now copy directories (recursively) too. - Renamed
rmrf()
toremove()
. remove()
aliased withdelete()
.- Added
mkdirp
capabilities. Named:mkdir()
. Hides Node.js nativemkdir()
. - Instead of exporting the native
fs
module with new functions, I now copy over the native methods to a new object and export that instead.
- Removed CoffeeScript dependency
- Added methods rmrf and rmrfSync
- Moved tests from Jasmine to Mocha