@thi.ng/rstream 8.5.8 → 8.5.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/README.md +1 -1
- package/package.json +14 -13
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -186,7 +186,7 @@ src.transformTopic("foo", map((e) => e.value), { error: handleError })
|
|
|
186
186
|
- [@thi.ng/atom](https://github.com/thi-ng/umbrella/tree/develop/packages/atom) - Mutable wrappers for nested immutable values with optional undo/redo history and transaction support
|
|
187
187
|
- [@thi.ng/hdom](https://github.com/thi-ng/umbrella/tree/develop/packages/hdom) - Lightweight vanilla ES6 UI component trees with customizable branch-local behaviors
|
|
188
188
|
- [@thi.ng/rdom](https://github.com/thi-ng/umbrella/tree/develop/packages/rdom) - Lightweight, reactive, VDOM-less UI/DOM components with async lifecycle and [@thi.ng/hiccup](https://github.com/thi-ng/umbrella/tree/develop/packages/hiccup) compatible
|
|
189
|
-
- [@thi.ng/transducers](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers) -
|
|
189
|
+
- [@thi.ng/transducers](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers) - Collection of ~170 lightweight, composable transducers, reducers, generators, iterators for functional data transformations
|
|
190
190
|
|
|
191
191
|
## Installation
|
|
192
192
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/rstream",
|
|
3
|
-
"version": "8.5.
|
|
3
|
+
"version": "8.5.10",
|
|
4
4
|
"description": "Reactive streams & subscription primitives for constructing dataflow graphs / pipelines",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -40,25 +40,26 @@
|
|
|
40
40
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@thi.ng/api": "^8.11.
|
|
44
|
-
"@thi.ng/arrays": "^2.9.
|
|
45
|
-
"@thi.ng/associative": "^7.0.
|
|
46
|
-
"@thi.ng/atom": "^5.3.
|
|
47
|
-
"@thi.ng/checks": "^3.6.
|
|
48
|
-
"@thi.ng/errors": "^2.5.
|
|
49
|
-
"@thi.ng/logger": "^3.0.
|
|
50
|
-
"@thi.ng/transducers": "^9.0.
|
|
43
|
+
"@thi.ng/api": "^8.11.8",
|
|
44
|
+
"@thi.ng/arrays": "^2.9.14",
|
|
45
|
+
"@thi.ng/associative": "^7.0.3",
|
|
46
|
+
"@thi.ng/atom": "^5.3.8",
|
|
47
|
+
"@thi.ng/checks": "^3.6.10",
|
|
48
|
+
"@thi.ng/errors": "^2.5.14",
|
|
49
|
+
"@thi.ng/logger": "^3.0.18",
|
|
50
|
+
"@thi.ng/transducers": "^9.0.13"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@microsoft/api-extractor": "^7.47.
|
|
53
|
+
"@microsoft/api-extractor": "^7.47.5",
|
|
54
54
|
"esbuild": "^0.23.0",
|
|
55
|
-
"typedoc": "^0.26.
|
|
56
|
-
"typescript": "^5.5.
|
|
55
|
+
"typedoc": "^0.26.5",
|
|
56
|
+
"typescript": "^5.5.4"
|
|
57
57
|
},
|
|
58
58
|
"keywords": [
|
|
59
59
|
"async",
|
|
60
60
|
"datastructure",
|
|
61
61
|
"event",
|
|
62
|
+
"fork-join",
|
|
62
63
|
"graph",
|
|
63
64
|
"pipeline",
|
|
64
65
|
"pubsub",
|
|
@@ -218,5 +219,5 @@
|
|
|
218
219
|
],
|
|
219
220
|
"year": 2017
|
|
220
221
|
},
|
|
221
|
-
"gitHead": "
|
|
222
|
+
"gitHead": "ec78f98d015e4d214a0b840e72e497407807daf3\n"
|
|
222
223
|
}
|