Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preparing convict 6 #353

Closed
wants to merge 26 commits into from
Closed
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
19e7f9f
[Remove dependencies] Convert some default format to external package…
A-312 Dec 15, 2019
9066f56
Update CHANGELOG
madarche Dec 15, 2019
30bcc2e
Regenerating package-lock.json
madarche Dec 28, 2019
4d3988d
Update Precendence order according implementation
zaverden Oct 8, 2019
f8f9b24
[Remove dependencies] Convert some default format to external package…
A-312 Dec 15, 2019
50f2936
Update CHANGELOG
madarche Dec 15, 2019
a91ebe6
Regenerating package-lock.json
madarche Dec 28, 2019
1b850a6
Merge #314: Update Precendence order documentation according implemen…
zaverden Jan 5, 2020
cbb0f52
Merge #336: Fire error with 'properties' keyname in schema and 'prope…
A-312 Jan 5, 2020
374f97b
Merge #348: Add doc about second argument of convict
A-312 Jan 5, 2020
4ea2369
Merge #347: Use Chai for test cases
A-312 Jan 5, 2020
23d3a85
Merge #352: Coerce from strings to their proper types (NOT MORE) + co…
A-312 Jan 5, 2020
4edb3d9
Force the default SwitchCase value
A-312 Jan 5, 2020
993e7de
codereview: transform coerce method to be call only once (in normaliz…
A-312 Dec 9, 2019
d0dcf98
code review: `let` should only be used when needed
A-312 Jan 5, 2020
413b662
code review: Better error handler
A-312 Dec 21, 2019
76d49f9
All test files should use a new independant instance of convict
A-312 Dec 31, 2019
1a2dac1
Merge #342: Custom Getter
A-312 Jan 5, 2020
e5a7264
Add test for "'_cvtProperties' is reserved word"
A-312 Jan 5, 2020
4c7fe5c
Merge #354: Full support of periods in property name and property path
A-312 Jan 5, 2020
e3e5171
Remove `.toLowerCase()` to fix unknown format
A-312 Jan 6, 2020
0ee59a4
Fix path in example
A-312 Jan 6, 2020
f443ee2
Merge #357: Improve schema parsing behavior
A-312 Jan 25, 2020
8ab53aa
Update ObjectPath to 2.0.0
A-312 Jan 25, 2020
0e10fe1
Fix spelling
A-312 Feb 1, 2020
51c2483
fix sense
A-312 Feb 1, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
node_modules/*
test/coverage/*

node_modules
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ rules:
no-path-concat: 2

# Presentation
indent: [2, 2]
indent: [2, 2, { "SwitchCase": 1 }]
quotes: [2, single, avoid-escape]
new-cap: 2
camelcase: 0
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*~
/node_modules
node_modules
npm-debug.log
/test/coverage
packages/convict/test/coverage
3 changes: 0 additions & 3 deletions .istanbul.yml

This file was deleted.

7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,16 @@ language: node_js

sudo: false

cache:
directories:
- node_modules

node_js:
- "stable"
- "lts/*"

install:
- npm run bootstrap:ci

script:
- npm run test:ci
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [6.0.0] - 2019-XX-XX
### Changed

- Remove json5 dependency and make it an optional parser #326 (A-312)
- [BREAKING] Multi-packages split #327 (A-312)
- [BREAKING] Remove json5 dependency and make it an optional parser #326 (A-312)

## [5.2.0] - 2019-10-12
### Added
Expand Down
Loading