Skip to content

Commit bd2b76d

Browse files
author
Michael Cohen
committed
Reverting export style + fix contributing.md
1 parent f7d738e commit bd2b76d

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

contributing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ While developing and debugging changes to this SDK, you can 'test-run' them loca
6767
npm link
6868
```
6969

70-
2. In your other package's root directory, make sure to remove `next` from `node_modules` with:
70+
2. In your other package's root directory, make sure to remove `@opensea/stream-js` from `node_modules` with:
7171

7272
```sh
73-
rm -rf ./node_modules/next
73+
rm -rf ./node_modules/@opensea/stream-js
7474
```
7575

7676
3. In your other package's root directory, run:

src/index.ts

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,2 @@
1-
import { OpenSeaStreamClient } from './client';
2-
import * as OpenSeaStreamTypes from './types';
3-
4-
export default {
5-
client: OpenSeaStreamClient,
6-
types: OpenSeaStreamTypes
7-
};
1+
export * from './client';
2+
export * from './types';

0 commit comments

Comments
 (0)