Skip to content

Commit ee6d46e

Browse files
zalmoxisusgaearon
authored andcommitted
Move instrumentation to redux-devtools-instrument (#281)
1 parent f02ceeb commit ee6d46e

File tree

5 files changed

+3
-1047
lines changed

5 files changed

+3
-1047
lines changed

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
"react-addons-test-utils": "^0.14.0",
5555
"react-dom": "^0.14.0",
5656
"rimraf": "^2.3.4",
57-
"rxjs": "^5.0.0-beta.6",
5857
"webpack": "^1.11.0"
5958
},
6059
"peerDependencies": {
@@ -65,6 +64,6 @@
6564
"lodash": "^4.2.0",
6665
"react-redux": "^4.0.0",
6766
"redux": "^3.5.2",
68-
"symbol-observable": "^0.2.4"
67+
"redux-devtools-instrument": "^1.0.1"
6968
}
7069
}

src/createDevTools.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { Children, Component, PropTypes } from 'react';
22
import { connect } from 'react-redux';
3-
import instrument from './instrument';
3+
import instrument from 'redux-devtools-instrument';
44

55
export default function createDevTools(children) {
66
const monitorElement = Children.only(children);

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export { default as instrument, ActionCreators, ActionTypes } from './instrument';
1+
export { default as instrument, ActionCreators, ActionTypes } from 'redux-devtools-instrument';
22
export { default as persistState } from './persistState';
33
export { default as createDevTools } from './createDevTools';

0 commit comments

Comments
 (0)