Skip to content

Commit

Permalink
chore: 🤖 imrove CRDT exports from index files
Browse files Browse the repository at this point in the history
  • Loading branch information
streamich committed Nov 28, 2023
1 parent a5d8b75 commit 39aa560
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/json-crdt-patch/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@
*/

export * from './types';
export * from './clock';
export * from './operations';
export * from './Patch';
export * from './PatchBuilder';
Expand Down
3 changes: 3 additions & 0 deletions src/json-crdt/codec/indexed/binary/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export * from './types';
export * from './Encoder';
export * from './Decoder';
2 changes: 2 additions & 0 deletions src/json-crdt/codec/sidecar/binary/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from './Encoder';
export * from './Decoder';
4 changes: 4 additions & 0 deletions src/json-crdt/codec/structural/binary/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export * from './constants';
export * from './Encoder';
export * from './Decoder';
export * from './ViewDecoder';
3 changes: 3 additions & 0 deletions src/json-crdt/codec/structural/compact/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export * from './types';
export * from './Encoder';
export * from './Decoder';
3 changes: 3 additions & 0 deletions src/json-crdt/codec/structural/verbose/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export * from './types';
export * from './Encoder';
export * from './Decoder';
2 changes: 2 additions & 0 deletions src/json-crdt/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
export * from './nodes';
export * from './extensions/types';
export * from './model';

export * from '../json-crdt-patch';
7 changes: 5 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,11 @@
"entryPoints": [
"src/binary-rx/index.ts",
"src/json-crdt/index.ts",
"src/json-crdt-patch/index.ts",
"src/json-crdt-patch/clock/index.ts",
"src/json-crdt/codec/structural/binary/index.ts",
"src/json-crdt/codec/structural/compact/index.ts",
"src/json-crdt/codec/structural/verbose/index.ts",
"src/json-crdt/codec/indexed/binary/index.ts",
"src/json-crdt/codec/sidecar/binary/index.ts",
"src/json-crdt-patch/codec/json/index.ts",
"src/json-crdt-patch/codec/compact/index.ts",
"src/json-crdt-patch/codec/binary/index.ts",
Expand Down

0 comments on commit 39aa560

Please sign in to comment.