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

Update dependencies #18

Merged
merged 14 commits into from
Aug 9, 2017
Merged
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
2 changes: 0 additions & 2 deletions demo/src/js/components/Editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,3 @@ Editor.propTypes = {
initialHtml: PropTypes.string.isRequired,
onUpdateClick: PropTypes.func.isRequired
};

export default Editor;
Loading