Skip to content

Commit

Permalink
chore(infra): upgrade all deps (#144)
Browse files Browse the repository at this point in the history
- mark as compatible with sinon@9 (closes #143).
- fixed all `npm audit` errors.
- made sure Travis tests on current Node versions (10/12/13).
- replaced deprecated istanbul with nyc.
  • Loading branch information
AviVahl authored and simondel committed Dec 24, 2019
1 parent fb4f82a commit 60df918
Show file tree
Hide file tree
Showing 8 changed files with 2,068 additions and 1,201 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,3 +2,4 @@
/npm-debug.log

/coverage/
/.nyc_output/
9 changes: 7 additions & 2 deletions .travis.yml
@@ -1,12 +1,17 @@
language: node_js

node_js:
- 4
- stable
- 10 # LTS
- 12 # LTS
- 13 # Current

env:
- CHAI_VERSION=^4.0.0 SINON_VERSION=^8.0.0
- CHAI_VERSION=^4.0.0 SINON_VERSION=^7.0.0
- CHAI_VERSION=^4.0.0 SINON_VERSION=^6.0.0
- CHAI_VERSION=^4.0.0 SINON_VERSION=^5.0.0
- CHAI_VERSION=^4.0.0 SINON_VERSION=^4.0.0

script:
- npm run lint
- npm run test-travis

0 comments on commit 60df918

Please sign in to comment.