Skip to content

Commit

Permalink
v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zalmoxisus committed Aug 4, 2016
1 parent 5b43f5e commit 16eaa74
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ export default function configureStore(initialState) {
);
// Note: passing enhancer as last argument requires redux@>=3.1.0
const store = createStore(reducer, initialState, enhancer);
// devTools will ignores other enhancers & middlewares
// update the store after creating / changing:
// If you have other enhancers & middlewares
// update the store after creating / changing to allow devTools to use them
devTools.updateStore(store);
return store;
}
Expand Down Expand Up @@ -90,8 +90,8 @@ export default function configureStore(initialState) {
maxAge: 30, filters: { blacklist: ['EFFECT_RESOLVED'] }
})
);
// devTools will ignores other enhancers & middlewares
// update the store after creating / changing:
// If you have other enhancers & middlewares
// update the store after creating / changing to allow devTools to use them
devTools.updateStore(store);
return store;
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remote-redux-devtools",
"version": "0.4.0",
"version": "0.4.1",
"description": "Relay Redux actions to remote Redux DevTools.",
"main": "lib/index.js",
"files": [
Expand Down

0 comments on commit 16eaa74

Please sign in to comment.