File tree Expand file tree Collapse file tree 6 files changed +12
-12
lines changed
Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 2727 "babel-loader" : " ^5.1.4" ,
2828 "node-libs-browser" : " ^0.5.2" ,
2929 "react-hot-loader" : " ^1.3.0" ,
30- "redux-devtools" : " ^3.0.0-beta-3 " ,
31- "redux-devtools-log-monitor" : " ^1.0.0-beta-3 " ,
32- "redux-devtools-dock-monitor" : " ^1.0.0-beta-3 " ,
30+ "redux-devtools" : " ^3.0.0" ,
31+ "redux-devtools-log-monitor" : " ^1.0.1 " ,
32+ "redux-devtools-dock-monitor" : " ^1.0.1 " ,
3333 "webpack" : " ^1.9.11" ,
3434 "webpack-dev-server" : " ^1.9.0"
3535 }
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ import LogMonitor from 'redux-devtools-log-monitor';
44import DockMonitor from 'redux-devtools-dock-monitor' ;
55
66export default createDevTools (
7- < DockMonitor toggleVisibilityKey = 'H '
8- changePositionKey = 'Q ' >
7+ < DockMonitor toggleVisibilityKey = 'ctrl-h '
8+ changePositionKey = 'ctrl-q ' >
99 < LogMonitor />
1010 </ DockMonitor >
1111) ;
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ import LogMonitor from 'redux-devtools-log-monitor';
44import DockMonitor from 'redux-devtools-dock-monitor' ;
55
66export default createDevTools (
7- < DockMonitor toggleVisibilityKey = 'H '
8- changePositionKey = 'Q ' >
7+ < DockMonitor toggleVisibilityKey = 'ctrl-h '
8+ changePositionKey = 'ctrl-q ' >
99 < LogMonitor />
1010 </ DockMonitor >
1111) ;
Original file line number Diff line number Diff line change 4040 "node-libs-browser" : " ^0.5.2" ,
4141 "raw-loader" : " ^0.5.1" ,
4242 "react-hot-loader" : " ^1.3.0" ,
43- "redux-devtools" : " ^3.0.0-beta-3 " ,
44- "redux-devtools-log-monitor" : " ^1.0.0-beta-3 " ,
45- "redux-devtools-dock-monitor" : " ^1.0.0-beta-3 " ,
43+ "redux-devtools" : " ^3.0.0" ,
44+ "redux-devtools-log-monitor" : " ^1.0.1 " ,
45+ "redux-devtools-dock-monitor" : " ^1.0.1 " ,
4646 "style-loader" : " ^0.12.3" ,
4747 "todomvc-app-css" : " ^2.0.1" ,
4848 "webpack" : " ^1.9.11" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " redux-devtools" ,
3- "version" : " 3.0.0-beta-3 " ,
3+ "version" : " 3.0.0" ,
44 "description" : " Redux DevTools with hot reloading and time travel" ,
55 "main" : " lib/index.js" ,
66 "scripts" : {
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ export default function createDevTools(children) {
88 const Monitor = monitorElement . type ;
99 const ConnectedMonitor = connect ( state => state ) ( Monitor ) ;
1010 const enhancer = instrument ( ( state , action ) =>
11- Monitor . reducer ( state , action , monitorProps )
11+ Monitor . update ( monitorProps , state , action )
1212 ) ;
1313
1414 return class DevTools extends Component {
You can’t perform that action at this time.
0 commit comments