Skip to content

Commit e899fcb

Browse files
authored
Merge pull request #110 from thefrontside/tm/add-subject-export
2 parents 773ced2 + f36635b commit e899fcb

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

stream-helpers/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,10 +192,10 @@ function* exampleWithCloseValue() {
192192
}
193193
```
194194

195-
### Subject (like RxJS BehaviorSubject)
195+
### Subject
196196

197-
The `createSubject` helper converts any stream into a multicast stream that
198-
replays the latest value to new subscribers. It's analogous to
197+
Subject helper converts any stream into a multicast stream that replays the
198+
latest value to new subscribers. It's analogous to
199199
[RxJS BehaviorSubject](https://www.learnrxjs.io/learn-rxjs/subjects/behaviorsubject).
200200

201201
```typescript

stream-helpers/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@effectionx/stream-helpers",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"imports": {
55
"effection": "npm:effection@^3",
66
"immutable": "npm:immutable@^5",

stream-helpers/mod.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ export * from "./map.ts";
44
export * from "./filter.ts";
55
export * from "./tracker.ts";
66
export * from "./for-each.ts";
7+
export * from "./subject.ts";

worker/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@effectionx/worker",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"license": "MIT",
55
"exports": "./mod.ts",
66
"imports": {

worker/mod.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
export * from "./worker.ts";
22
export * from "./worker-main.ts";
3+
export * from "./types.ts";

0 commit comments

Comments
 (0)