@thi.ng/rstream 8.5.9 → 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/README.md +1 -1
  3. package/package.json +14 -13
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-07-22T13:15:57Z
3
+ - **Last updated**: 2024-08-10T15:03:07Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
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) - Lightweight transducer implementations for ES6 / TypeScript
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.9",
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.7",
44
- "@thi.ng/arrays": "^2.9.13",
45
- "@thi.ng/associative": "^7.0.2",
46
- "@thi.ng/atom": "^5.3.7",
47
- "@thi.ng/checks": "^3.6.9",
48
- "@thi.ng/errors": "^2.5.13",
49
- "@thi.ng/logger": "^3.0.17",
50
- "@thi.ng/transducers": "^9.0.12"
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.0",
53
+ "@microsoft/api-extractor": "^7.47.5",
54
54
  "esbuild": "^0.23.0",
55
- "typedoc": "^0.26.3",
56
- "typescript": "^5.5.3"
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": "ec052b25dff4db6c4d1748e946c38fb5cf403dbf\n"
222
+ "gitHead": "ec78f98d015e4d214a0b840e72e497407807daf3\n"
222
223
  }