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: templates/common/CONTRIBUTING.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,9 +27,15 @@ yarn example android
27
27
To run the example app on iOS:
28
28
29
29
```sh
30
-
yarn example android
30
+
yarn example ios
31
31
```
32
+
<% if (!project.native) { %>
33
+
To run the example app on Web:
32
34
35
+
```sh
36
+
yarn example web
37
+
```
38
+
<% } %>
33
39
Make sure your code passes TypeScript and ESLint. Run the following to verify:
34
40
35
41
```sh
@@ -48,7 +54,11 @@ Remember to add tests for your change if possible. Run the unit tests by:
48
54
```sh
49
55
yarn test
50
56
```
57
+
<% if (project.native) { %>
58
+
To edit the Objective-C files, open `example/ios/<%= project.name %>Example.xcworkspace` in XCode and find the source files at `Pods > Development Pods > <%= project.slug %>`.
51
59
60
+
To edit the Java files, open `example/android` in Android studio and find the source files at `<%= project.package %>` under `Android`.
61
+
<% } %>
52
62
### Commit message convention
53
63
54
64
We follow the [conventional commits specification](https://www.conventionalcommits.org/en) for our commit messages:
0 commit comments