New Features
- Add custom ES module exports for browsers (#145)
- Drop
__esModule
markers from CJS transpilation (#145) - Support
BigInt
values (#146) - Add
YAML.scalarOptions
(#146) - Add
indent
option: number of spaces (default:2
) (#147) - Add
indentSeq
option: if false, consider-
as indentation (default:true
) (#147) - Add TypeScript typings, based on
@types/yaml
by @ikatyang, with contributions from @ColinBradley and @shirk3y (#153)
Bugfixes
- Only use named exports internally (#145)
- Clean up & document warning silencing, also supporting process.env (Fixes #148)
- Fix typo in flow collection parsing (Fixes #149)
- Accept that multiple blank lines generate multiple nodes (Closes #150)
- Use cross-env to enable building on Windows (#152 by @shirk3y)
- Specify
Document.cstNode
type - Add
Pair.Type
enum - Export
YAMLError
from 'yaml/util'