Skip to content

Commit 1e183b3

Browse files
vasekerBlackheart340
authored andcommitted
fix: examples startup
1 parent 7848d66 commit 1e183b3

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,5 @@ jspm_packages
4444
dist
4545
umd
4646

47-
.idea
47+
.idea
48+
package-lock.json

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ You can pass react component to be used as a direct child of the `<Fragment>`.
455455
## Examples
456456
We 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

examples/src/store/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);
1919
const enhancer = compose(...toEnhance);
2020
const reducers = combineReducers({
2121
[slice]: router.reducer

0 commit comments

Comments
 (0)