- bugfix
copySync()
preserve file permissions #80
- upgraded
"ncp": "^0.5.1"
to"ncp": "^0.6.0"
- upgrade
jsonfile": "^1.2.0"
tojsonfile": "^2.0.0"
=> on write, json files now have\n
at end. Also addsoptions.throws
toreadJsonSync()
see https://github.com/jprichardson/node-jsonfile#readfilesyncfilename-options for more details.
- bugfix: upgaded
"jsonfile": "~1.1.0"
to"jsonfile": "^1.2.0"
, bumped minor because ofjsonfile
dep change from~
to^
. #67
- removed Node.js
0.8.x
support,0.9.0
was published moments ago and should have been done there
- upgraded
ncp
from~0.4.2
to^0.5.1
, #58 - upgraded
rimraf
from~2.2.6
to^2.2.8
- upgraded
mkdirp
from0.3.x
to^0.5.0
- added methods
ensureFile()
,ensureFileSync()
- added methods
ensureDir()
,ensureDirSync()
#31 - added
move()
method. From: https://github.com/andrewrk/node-mv
- copy failed to return an error to the callback if a file doesn't exist (ulikoehler #38, #39)
filter
implemented oncopy()
andcopySync()
. (Srirangan / #36)
copySync()
implemented (Srirangan / #33)- updated to the latest
jsonfile
version1.1.0
which givesoptions
params for the JSON methods. Closes #32
- update readme conventions
copy()
now works if destination directory does not exist. Closes #29
- changed
homepage
field in package.json to remove NPM warning
- changed JSON spacing default from
4
to2
to follow Node conventions - updated
jsonfile
dep - updated
rimraf
dep
- added .npmignore, #25
- modified for
strict
mode, closes #24 - added
outputJson()/outputJsonSync()
, closes #23
- 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