@thi.ng/rstream 7.2.42 → 7.2.44
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/nodejs.d.ts +1 -1
- package/nodejs.js +1 -1
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -155,7 +155,7 @@ src.transformTopic("foo", map((e) => e.value), { error: handleError })
|
|
|
155
155
|
**Notes:**
|
|
156
156
|
|
|
157
157
|
- (1): If using multiple transducers, they must be pre-composed with
|
|
158
|
-
[`comp()`](https://docs.thi.ng/umbrella/transducers/
|
|
158
|
+
[`comp()`](https://docs.thi.ng/umbrella/transducers/functions/comp.html). Other
|
|
159
159
|
signatures of `.transform()` method support up to 4 transducers and composes
|
|
160
160
|
them automatically.
|
|
161
161
|
|
package/nodejs.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export declare const fromNodeJS: <T>(stdout: Readable, stderr?: Readable, close?
|
|
|
18
18
|
* breaks by default).
|
|
19
19
|
*
|
|
20
20
|
* @remarks
|
|
21
|
-
* Internally uses https://docs.thi.ng/umbrella/transducers/
|
|
21
|
+
* Internally uses https://docs.thi.ng/umbrella/transducers/functions/rechunk.html
|
|
22
22
|
* to rechunk input.
|
|
23
23
|
*
|
|
24
24
|
* @example
|
package/nodejs.js
CHANGED
|
@@ -23,7 +23,7 @@ export const fromNodeJS = (stdout, stderr, close = true) => {
|
|
|
23
23
|
* breaks by default).
|
|
24
24
|
*
|
|
25
25
|
* @remarks
|
|
26
|
-
* Internally uses https://docs.thi.ng/umbrella/transducers/
|
|
26
|
+
* Internally uses https://docs.thi.ng/umbrella/transducers/functions/rechunk.html
|
|
27
27
|
* to rechunk input.
|
|
28
28
|
*
|
|
29
29
|
* @example
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/rstream",
|
|
3
|
-
"version": "7.2.
|
|
3
|
+
"version": "7.2.44",
|
|
4
4
|
"description": "Reactive streams & subscription primitives for constructing dataflow graphs / pipelines",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"license": "Apache-2.0",
|
|
30
30
|
"scripts": {
|
|
31
31
|
"build": "yarn clean && tsc --declaration",
|
|
32
|
-
"clean": "rimraf '*.js' '*.d.ts' '*.map' doc internal",
|
|
32
|
+
"clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc internal",
|
|
33
33
|
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
|
|
34
34
|
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
|
|
35
35
|
"doc:readme": "yarn doc:stats && tools:readme",
|
|
@@ -38,21 +38,21 @@
|
|
|
38
38
|
"test": "testament test"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@thi.ng/api": "^8.7.
|
|
42
|
-
"@thi.ng/arrays": "^2.5.
|
|
43
|
-
"@thi.ng/associative": "^6.2.
|
|
44
|
-
"@thi.ng/atom": "^5.1.
|
|
45
|
-
"@thi.ng/checks": "^3.3.
|
|
46
|
-
"@thi.ng/errors": "^2.2.
|
|
47
|
-
"@thi.ng/logger": "^1.4.
|
|
48
|
-
"@thi.ng/transducers": "^8.3.
|
|
41
|
+
"@thi.ng/api": "^8.7.4",
|
|
42
|
+
"@thi.ng/arrays": "^2.5.8",
|
|
43
|
+
"@thi.ng/associative": "^6.2.31",
|
|
44
|
+
"@thi.ng/atom": "^5.1.33",
|
|
45
|
+
"@thi.ng/checks": "^3.3.10",
|
|
46
|
+
"@thi.ng/errors": "^2.2.13",
|
|
47
|
+
"@thi.ng/logger": "^1.4.11",
|
|
48
|
+
"@thi.ng/transducers": "^8.3.38"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@microsoft/api-extractor": "^7.34.
|
|
52
|
-
"@thi.ng/testament": "^0.3.
|
|
53
|
-
"rimraf": "^4.
|
|
51
|
+
"@microsoft/api-extractor": "^7.34.4",
|
|
52
|
+
"@thi.ng/testament": "^0.3.13",
|
|
53
|
+
"rimraf": "^4.4.0",
|
|
54
54
|
"tools": "^0.0.1",
|
|
55
|
-
"typedoc": "^0.23.
|
|
55
|
+
"typedoc": "^0.23.26",
|
|
56
56
|
"typescript": "^4.9.5"
|
|
57
57
|
},
|
|
58
58
|
"keywords": [
|
|
@@ -205,5 +205,5 @@
|
|
|
205
205
|
],
|
|
206
206
|
"year": 2017
|
|
207
207
|
},
|
|
208
|
-
"gitHead": "
|
|
208
|
+
"gitHead": "cc46c097a3a173fb1ef41f57a858d03037063141\n"
|
|
209
209
|
}
|