From 89a6285c94f15b321d03a1d95d8ce71eb5c1d489 Mon Sep 17 00:00:00 2001 From: Eli Zibin Date: Fri, 21 Jan 2022 09:53:06 -0800 Subject: [PATCH] docs: update `/example` readme This is just a small docs change for future contributors. I found that when messing around within the example app, and testing a failure case (i.e removing text and rebuilding/running the owl test again) will initially blow up since the `/report/index.html` template doesn't get copied to `/dist` unless the `postbuild` action runs inside the main owl directory first. So this just adds that instruction to the example readme. --- example/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/example/README.md b/example/README.md index 5d9af50b..04f7ab35 100644 --- a/example/README.md +++ b/example/README.md @@ -40,10 +40,11 @@ yarn android ## Development -To use a local version of react-native-owl, first, navigate to the local directory of react-native-owl(one level up from the current directory) and run the following command: +To use a local version of react-native-owl, first, navigate to the local directory of react-native-owl (one level up from the current directory) and run the following commands: ```sh # Assuming you are inside react-native-owl - ie. ~/Projects/react-native-owl +yarn build yarn watch ```