mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-19 08:22:53 +00:00
1.6 KiB
1.6 KiB
changelog
0.5.1
- Update dependencies
0.5.0
- Update dependencies
- Simplify build process
0.4.0
- Add ES6 build
0.3.8
sander.writeFileandsander.appendFilereturn promises that resolve with the data written or appended
0.3.7
- Previous version introduced a bug that affected older versions of Node.js – now fixed
0.3.6
- In Node.js 4, buffers are created in JavaScript – replace
!== '[object Buffer]'check with=== '[object Object]'
0.3.5
sander.writeFileandsander.appendFile, and their sync equivalents, can take a finaloptionsargument specifying e.g. encoding (#6)
0.3.4
- Fix
symlinkOrCopyon Windows (#4) - thanks @clintwood
0.3.3
- Reinstate graceful-fs to avoid EMFILE errors
0.3.2
- Create intermediate directories when symlinking
0.3.1
- Include dist files in npm package. (Whoops!)
0.3.0
- Rewrote as ES6 modules
- Added
symlinkOrCopyandsymlinkOrCopySyncmethods, inspired by symlink-or-copy
0.2.4
- Add
appendFileandappendFileSyncmethods (#2)
0.2.2-0.2.3
- Appeasing the npm gods
0.2.1
sander.copydir()no longer fails with empty directories
0.2.0
- Now using graceful-fs, to prevent EMFILE errors from ruining your day
- Intermediate directories are created by
sander.link(),sander.rename()and their synchronous equivalents