Skip to content

Commit f0e1a13

Browse files
committed
tweak test
1 parent 7aca35e commit f0e1a13

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ Instead of returning an object, you should directly mutate the received stores.
568568

569569
#### Beginner
570570

571-
* [Clock Widget](https://solkimicreb.github.io/react-easy-state/examples/clock/build) ([source](/examples/clock/)) ([codesandbox](https://codesandbox.io/s/github/solkimicreb/react-easy-state/tree/master/examples/clock)): a reusable clock widget with a tiny local state store.
571+
* [Clock Widget](https://solkimicreb.github.io/react-easy-state/examples/clock/build) ([source](/examples/clock/)) ([codesandbox](https://codesandbox.io/s/github/solkimicreb/react-easy-state/tree/master/examples/clock)) ([react-native](/examples/native-clock/)): a reusable clock widget with a tiny local state store.
572572
* [Stopwatch](https://solkimicreb.github.io/react-easy-state/examples/stop-watch/build) ([source](/examples/stop-watch/)) ([codesandbox](https://codesandbox.io/s/github/solkimicreb/react-easy-state/tree/master/examples/stop-watch)) ([tutorial](https://hackernoon.com/introducing-react-easy-state-1210a156fa16)): a stopwatch with a mix of normal and computed state properties.
573573

574574
#### Advanced

babel.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const test = {
1515
}
1616

1717
const bundle = process.env.BUNDLE
18-
if (bundle.indexOf('es5') !== -1) {
18+
if (bundle && bundle.indexOf('es5') !== -1) {
1919
test.presets.push('@babel/preset-env')
2020
}
2121

0 commit comments

Comments
 (0)