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

0.6.2 #335

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open

0.6.2 #335

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: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: node_js
node_js:
- 8
- 14
before_install:
- "npm install react@16.4.1 react-dom@16.4.1 styled-components@4.1.3"
- "npm install -g npm@latest react@16.8.1 react-dom@16.8.1 styled-components@5.3.3"
2 changes: 1 addition & 1 deletion dist/react-simple-chatbot.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/react-simple-chatbot.js.map

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion example/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@
</head>
<body>
<div id="root"></div>
<script src="bundle.js"></script>
</body>
</html>
5 changes: 5 additions & 0 deletions example/index.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import React from 'react';
import { render } from 'react-dom';
import Example from './components/Example';

render(<Example />, document.getElementById('root'));
Loading