Skip to content

Commit a588da8

Browse files
authored
Merge pull request #34 from nebarf/fix-contributing
Fix contributing md
2 parents 8032b81 + 75d699c commit a588da8

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

CONTRIBUTING.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,16 @@ Contributing
2828
```sh
2929
$ yarn link react-http-fetch
3030
```
31-
7. Link react peer deps to local library
31+
6. Link react and react-dom:
32+
```sh
33+
$ yarn --cwd node_modules/react link
34+
$ yarn --cwd node_modules/react-dom link
35+
```
36+
7. Link react peer deps to local library:
3237
```sh
3338
$ cd ../react-http-fetch
34-
$ yarn link ../react-http-fetch-sandbox/node_modules/react
35-
$ yarn link ../react-http-fetch-sandbox/node_modules/react-dom
39+
$ yarn link react
40+
$ yarn link react-dom
3641
```
3742
8. Start library build in watch mode:
3843
```sh

src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ export {
33
AbortableHttpRequestReturn,
44
HttpClientAbortableRequest,
55
HttpClientRequest,
6+
HttpContext,
7+
HttpContextToken,
68
HttpRequest,
79
HttpRequestOptions,
810
HttpRequestProps,

0 commit comments

Comments
 (0)