- Added REQUIRED_IN_PROD option
- Fixed: 'false' setting was overriden by 'true' default. Thanks to @adeubank
- Fixed: Two different nodes with the same value caused a circular reference.
- Package is now automatically published after successful tests in Travis-ci
- Replaced
Meteor.Error
withError
as per Style Guide.
- Handle Date and Arrays
- Added deep/recursive defaults setting:
If
Meteor.settings = { a: { b: 1 } }
Anddefaults = { a: { c: 2 } }
ThenMeteor.settings = { a: { b: 1, c: 2 } }
- Throw
Meteor.Error('circular-defaults')
if a circular reference is detected.
- I was born!