We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea58d11 commit 33b0932Copy full SHA for 33b0932
CONTRIBUTING.md
@@ -1,8 +1,38 @@
1
+## Pull Requests
2
+
3
+Please don't send pull requests for new features, open an issue to discuss.
4
5
+## Running tests
6
7
+This repo uses Jest.
8
9
+```sh
10
+yarn test
11
+# or
12
+yarn test --watch
13
+```
14
15
## Developing the examples
16
17
+First you have to link the lib.
18
19
```sh
20
+# from the root
21
+yarn build
22
yarn link
-cd example
23
24
25
+Then in one tab compile on file changes
26
27
28
+yarn watch
29
30
31
+And in another tab run the example
32
33
34
+# in a new tab
35
+cd examples/<whatever>
36
yarn link "@reach/router"
37
yarn start
38
```
0 commit comments