Skip to content

Commit

Permalink
Move instrumentation to redux-devtools-instrument (#281)
Browse files Browse the repository at this point in the history
  • Loading branch information
zalmoxisus authored and gaearon committed May 9, 2016
1 parent f02ceeb commit ee6d46e
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 1,047 deletions.
3 changes: 1 addition & 2 deletions package.json
Expand Up @@ -54,7 +54,6 @@
"react-addons-test-utils": "^0.14.0",
"react-dom": "^0.14.0",
"rimraf": "^2.3.4",
"rxjs": "^5.0.0-beta.6",
"webpack": "^1.11.0"
},
"peerDependencies": {
Expand All @@ -65,6 +64,6 @@
"lodash": "^4.2.0",
"react-redux": "^4.0.0",
"redux": "^3.5.2",
"symbol-observable": "^0.2.4"
"redux-devtools-instrument": "^1.0.1"
}
}
2 changes: 1 addition & 1 deletion src/createDevTools.js
@@ -1,6 +1,6 @@
import React, { Children, Component, PropTypes } from 'react';
import { connect } from 'react-redux';
import instrument from './instrument';
import instrument from 'redux-devtools-instrument';

export default function createDevTools(children) {
const monitorElement = Children.only(children);
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
@@ -1,3 +1,3 @@
export { default as instrument, ActionCreators, ActionTypes } from './instrument';
export { default as instrument, ActionCreators, ActionTypes } from 'redux-devtools-instrument';
export { default as persistState } from './persistState';
export { default as createDevTools } from './createDevTools';

0 comments on commit ee6d46e

Please sign in to comment.