Skip to content

Commit

Permalink
upgrade to react 16.4.2 (#5)
Browse files Browse the repository at this point in the history
* docs: update dependency installation and docs path

* Update ActionListRow.jsx

* upgrade to react 16
  • Loading branch information
krishnasaga authored and zalmoxisus committed Dec 21, 2018
1 parent d309331 commit a65841c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ A state monitor for [Redux DevTools](https://github.com/gaearon/redux-devtools)
### Installation

```
npm install --save-dev redux-devtools-inspector
npm install --save-dev remotedev-inspector-monitor
```

### Usage
Expand All @@ -21,7 +21,7 @@ You can use `Inspector` as the only monitor in your app:
```js
import React from 'react';
import { createDevTools } from 'redux-devtools';
import Inspector from 'redux-devtools-inspector';
import Inspector from 'remotedev-inspector-monitor';

export default createDevTools(
<Inspector />
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@
"nyan-progress-webpack-plugin": "^1.1.4",
"pre-commit": "^1.1.3",
"raw-loader": "^0.5.1",
"react": "^15.3.2",
"react": "^16.4.2",
"react-bootstrap": "^0.30.6",
"react-dom": "^15.3.2",
"react-input-enhancements": "^0.5.3",
"react-dom": "^16.4.2",
"react-input-enhancements": "^0.7.5",
"react-redux": "^4.4.0",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.2",
Expand Down Expand Up @@ -79,6 +79,7 @@
"jss-nested": "^3.0.0",
"jss-vendor-prefixer": "^4.0.0",
"lodash.debounce": "^4.0.3",
"prop-types": "^15.6.2",
"react-base16-styling": "^0.4.1",
"react-dragula": "^1.1.17",
"react-json-tree": "^0.10.7",
Expand Down
3 changes: 2 additions & 1 deletion src/ActionListRow.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { Component, PropTypes } from 'react';
import React, { Component } from 'react';
import { PropTypes } from 'prop-types';
import shouldPureComponentUpdate from 'react-pure-render/function';
import dateformat from 'dateformat';
import debounce from 'lodash.debounce';
Expand Down
3 changes: 2 additions & 1 deletion src/DevtoolsInspector.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { Component, PropTypes } from 'react';
import React, { Component } from 'react';
import { PropTypes } from 'prop-types';
import { createStylingFromTheme, base16Themes } from './utils/createStylingFromTheme';
import shouldPureComponentUpdate from 'react-pure-render/function';
import ActionList from './ActionList';
Expand Down
3 changes: 2 additions & 1 deletion src/RightSlider.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { PropTypes } from 'react';
import React from 'react';
import { PropTypes } from 'prop-types';

const RightSlider = ({ styling, shown, children, rotate }) =>
<div {...styling([
Expand Down

0 comments on commit a65841c

Please sign in to comment.