Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
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