File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -44,4 +44,5 @@ jspm_packages
4444dist
4545umd
4646
47- .idea
47+ .idea
48+ package-lock.json
Original file line number Diff line number Diff line change @@ -455,7 +455,7 @@ You can pass react component to be used as a direct child of the `<Fragment>`.
455455## Examples
456456We provide a basic example of working React app that you can dig into. Just clone this repo and run:
457457``` bash
458- npm run build- examples
458+ npm run build: examples
459459```
460460
461461## Contributing
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ const toEnhance = [
1515 router . enhancer ,
1616 applyMiddleware ( ...middleware ) ,
1717 window && window . __REDUX_DEVTOOLS_EXTENSION__ && window . __REDUX_DEVTOOLS_EXTENSION__ ( )
18- ] ;
18+ ] . filter ( Boolean ) ;
1919const enhancer = compose ( ...toEnhance ) ;
2020const reducers = combineReducers ( {
2121 [ slice ] : router . reducer
You can’t perform that action at this time.
0 commit comments