Skip to content

Commit

Permalink
Update dependencies (#18)
Browse files Browse the repository at this point in the history
* Add package-lock.json file
* Add support for running ci with multiple versions of react
* Add React 16 to peer dependencies
  • Loading branch information
peternewnham authored Aug 9, 2017
1 parent f712b9e commit 160f206
Show file tree
Hide file tree
Showing 4 changed files with 6,351 additions and 10 deletions.
17 changes: 13 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
language: node_js

node_js:
- "4"
- "5"
- 8

env:
- REACT_VERSION=next # 16 beta
- REACT_VERSION=15

script:
- npm run lint
- npm test
# Send coverage data to Coveralls
after_script: "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"

before_script:
- npm install react@$REACT_VERSION react-dom@$REACT_VERSION

after_script:
- "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js" # Send coverage data to Coveralls
Loading

0 comments on commit 160f206

Please sign in to comment.