Skip to content

Commit 379859a

Browse files
authored
Merge pull request #36 from nitin42/3.x.x
3.5.x
2 parents 629509e + 12edb6b commit 379859a

31 files changed

+1518
-824
lines changed

.hound.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
jslint:
2+
enabled: false
13
eslint:
2-
enabled: true
4+
enabled: false
35
config_file: .eslintrc
46
ignore_file: .eslintignore

.storybook/config.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { configure } from '@storybook/react';
2+
3+
function loadStories() {
4+
require('../stories');
5+
}
6+
7+
configure(loadStories, module);

.storybook/webpack.config.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// you can use this file to add your custom webpack plugins, loaders and anything you like.
2+
// This is just the basic way to add additional webpack configurations.
3+
// For more information refer the docs: https://storybook.js.org/configurations/custom-webpack-config
4+
5+
// IMPORTANT
6+
// When you add this file, we won't add the default configurations which is similar
7+
// to "React Create App". This only has babel loader to load JavaScript.
8+
9+
module.exports = {
10+
plugins: [
11+
// your custom plugins
12+
],
13+
module: {
14+
loaders: [
15+
// add your custom loaders.
16+
],
17+
},
18+
};

CONTRIBUTING.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ I'm excited to have you helping out. Thank you so much for your time.
99
Considering you've forked and cloned the repo on your system, switch to the directory and install the dependencies.
1010

1111
```
12+
npm install g babel-cli
13+
npm install g webpack-cli
14+
1215
cd terminal-in-react
1316
npm install
1417
```
@@ -24,12 +27,10 @@ npm install
2427

2528
### Starting development server
2629

27-
To test your changes, there is a [starter](./starter) folder where you will find two files, `index.html` and `App.js`.
30+
To test your changes [Storybook](https://storybook.js.org) is used. This is a neat tool to test your component in an isolated state.
2831

29-
Make your changes to `App.js` and start the development server with -
32+
To start it, simply run `npm run storybook` and head to [http://localhost:6006]().
3033

31-
```
32-
npm run start
33-
```
34+
To add a new use case, just add a new story in the `stories/index.js` file.
3435

3536
That's it! I am excited to see your pull request.

README.md

-15
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020

2121
* [Usage](#usage)
2222

23-
* [Styling](#include-the-css)
24-
2523
* [Working](#working)
2624

2725
* [Plugins](#using-plugins-)
@@ -61,7 +59,6 @@ yarn add terminal-in-react
6159
```jsx
6260
import React, { Component } from 'react';
6361
import Terminal from 'terminal-in-react';
64-
import 'terminal-in-react/lib/css/index.css';
6562

6663
class App extends Component {
6764
showMsg = () => 'Hello World'
@@ -98,9 +95,6 @@ class App extends Component {
9895
}
9996
}
10097
```
101-
#### Include the CSS
102-
103-
Ensure that `terminal-in-react/lib/css/index.css` is loaded
10498

10599
> Be careful when copying this example because it uses `window` object (`'open-google': () => window.open("https://www.google.com/", "_blank"),`) which is only available on the client-side and it will give you an error if you're doing server side rendering.
106100
@@ -461,19 +455,10 @@ Eject from `create-react-app` and use a custom webpack configuration with [`babi
461455

462456
Set the style to `height: 100vh` on parent element.
463457

464-
**Interface issues due to plugins**
465-
466-
If you are having any issues with **plugins** or related api, fallback to `3.3.3`. Because plugins are still **WIP** !
467-
468458
[npm-dm]: https://img.shields.io/npm/dm/terminal-in-react.svg
469459
[npm-dt]: https://img.shields.io/npm/dt/terminal-in-react.svg
470460
[npm-v]: https://img.shields.io/npm/v/terminal-in-react.svg
471461
[deps]: https://img.shields.io/david/nitin42/terminal-in-react.svg
472462
[dev-deps]: https://img.shields.io/david/dev/nitin42/terminal-in-react.svg
473463
[license]: https://img.shields.io/npm/l/terminal-in-react.svg
474464
[package-url]: https://npmjs.com/package/terminal-in-react
475-
476-
## New updates
477-
478-
Follow [@NTulswani](https://twitter.com/NTulswani) on Twitter for new updates and progress 😄
479-

0 commit comments

Comments
 (0)