You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
v3.0.0 March 16, 2015
- Every function now also supports callbacks (2nd or 3rd argument)
- Errors will now always maintain their stacks where possible
- Simplified some aliases (b/c break)
- Changed `stringify` to now accept the arguments you would expect `stringify(data, replacer, indent)`
- Changed `parse` to delegate to `parseCSONString` instead of `parseString`
- Changed `load` to delegate to `parseCSONFile` instead of `parseFile`
- Removed `require` (it use to delegate to `requireFile`)
- Updated dependencies
v2.0.0 February 6, 2015
- API has been rewritten to be more robust and simple
- CSON data is now parsed and stringified with the [cson-parser](https://www.npmjs.com/package/cson-parser) package
- CLI now supports stdin input
- Node v0.11 and IO.js support
v1.4.3. Improvement. Bugfix.
- v1.4.3 August 30, 2013
- Better error handling when requiring a file that has syntax errors
- Fixed stringify of '{}' giving '{{}}' which is invalid
- Closes [issue bevry#21](bevry#21)