Skip to content

Commit e2dace9

Browse files
authored
Merge pull request #1 from A-312/feat-multi-packages-split
node-convict 6.0.0
2 parents be350a7 + 51c2483 commit e2dace9

File tree

204 files changed

+21441
-3774
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

204 files changed

+21441
-3774
lines changed

.eslintignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
node_modules/*
2-
test/coverage/*
3-
1+
node_modules

.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ rules:
2323
no-path-concat: 2
2424

2525
# Presentation
26-
indent: [2, 2]
26+
indent: [2, 2, { "SwitchCase": 1 }]
2727
quotes: [2, single, avoid-escape]
2828
new-cap: 2
2929
camelcase: 0

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
*~
2-
/node_modules
2+
node_modules
33
npm-debug.log
4-
/test/coverage
4+
packages/convict/test/coverage

.istanbul.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,16 @@ language: node_js
22

33
sudo: false
44

5+
cache:
6+
directories:
7+
- node_modules
8+
59
node_js:
610
- "stable"
711
- "lts/*"
812

13+
install:
14+
- npm run bootstrap:ci
15+
916
script:
1017
- npm run test:ci

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
88
## [6.0.0] - 2019-XX-XX
99
### Changed
1010

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

1314
## [5.2.0] - 2019-10-12
1415
### Added

0 commit comments

Comments
 (0)