You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+27-45
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,33 @@ RN Primitives provides unstyled components, offering a high degree of customizat
10
10
11
11
Accessibility is a significant focus within RN Primitives. We are dedicated to ensuring our components align with accessibility standards. Our ongoing efforts involve designing and testing components with appropriate labels, roles, and behaviors, aiming to provide an inclusive user experience.
12
12
13
+
### Getting started for contributors
14
+
15
+
1. Fork, clone, and install the dependencies with `pnpm`
16
+
17
+
```bash
18
+
pnpm i
19
+
```
20
+
21
+
2. Build and watch all of the primitive packages:
22
+
23
+
> This builds all of the primitive packages, it watches them for changes. This prevents the need to run the `build` command every time a primitive file is changed.
24
+
25
+
```bash
26
+
pnpm dev:primitives
27
+
```
28
+
29
+
3. Start the app of your choice:
30
+
31
+
```bash
32
+
# Start the Expo NativeWind app
33
+
pnpm dev:expo-nativewind
34
+
# Or start the Nextjs NativeWind app
35
+
pnpm dev:nextjs-nativewind
36
+
# Or the Documentation app
37
+
pnpm dev:docs
38
+
```
39
+
13
40
### Primitives
14
41
15
42
#### Core
@@ -49,48 +76,3 @@ Accessibility is a significant focus within RN Primitives. We are dedicated to e
49
76
-`slot`
50
77
-`types`
51
78
-`utils`
52
-
53
-
### Getting started for contributors
54
-
55
-
1. Fork, clone, and install the dependencies with `pnpm`
56
-
57
-
```bash
58
-
pnpm i
59
-
```
60
-
61
-
2. Build and watch all of the primitive packages:
62
-
63
-
> This builds all of the primitive packages, it watches them for changes. This prevents the need to run the `build` command every time a primitive file is changed.
64
-
65
-
```bash
66
-
pnpm dev:primitives
67
-
```
68
-
69
-
3. Start the app of your choice:
70
-
71
-
```bash
72
-
# Start the Expo NativeWind app
73
-
pnpm dev:expo-nativewind
74
-
# Or the Documentation app
75
-
pnpm dev:docs
76
-
```
77
-
78
-
### Trying out the Expo NativeWind app
79
-
80
-
1. Clone, and install the dependencies with `pnpm`
0 commit comments