This repository has been archived by the owner on Dec 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
56275b9
commit 0a9a84d
Showing
1 changed file
with
19 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
``` |