From 0a9a84dfad04cb6aa4c1820b7f7d269acfc513aa Mon Sep 17 00:00:00 2001 From: Nishan Date: Fri, 5 Feb 2021 17:02:29 +0530 Subject: [PATCH] update readme --- README.md | 43 +++++++++++++++++++------------------------ 1 file changed, 19 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index 65e253a..325168b 100644 --- a/README.md +++ b/README.md @@ -1,39 +1,34 @@ ## react-native-aria -## Installation - -1. Install project dependencies - - ``` - cd [project-root] - yarn - ``` - -2. Install example project dependencies - ``` - cd [project-root]/example/ - yarn - ``` - ## Run -Web +1. Install lerna and tsc globally + +2. Generate lib. ``` - cd [project-root] - yarn example web + cd [project-root] + lerna tsc ``` -iOS +3. Install dependencies ``` - cd [project-root] - yarn example ios + yarn ``` -Android +4. Run example ``` - cd [project-root] - yarn example android + cd [project-root]/example + yarn + + // Web + yarn web + + // iOS + yarn ios + + // Android + yarn android ```