@thi.ng/transducers-async 0.2.1 → 0.2.3
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 +7 -0
- package/package.json +15 -10
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
- [Transducers](#transducers)
|
|
22
22
|
- [Reducers](#reducers)
|
|
23
23
|
- [Status](#status)
|
|
24
|
+
- [Related packages](#related-packages)
|
|
24
25
|
- [Installation](#installation)
|
|
25
26
|
- [Dependencies](#dependencies)
|
|
26
27
|
- [Usage examples](#usage-examples)
|
|
@@ -83,6 +84,12 @@ Async versions of various highly composable transducers, reducers and iterators.
|
|
|
83
84
|
|
|
84
85
|
[Search or submit any issues for this package](https://github.com/thi-ng/umbrella/issues?q=%5Btransducers-async%5D+in%3Atitle)
|
|
85
86
|
|
|
87
|
+
## Related packages
|
|
88
|
+
|
|
89
|
+
- [@thi.ng/csp](https://github.com/thi-ng/umbrella/tree/develop/packages/csp) - Primitives & operators for Communicating Sequential Processes based on async/await and async iterables
|
|
90
|
+
- [@thi.ng/fibers](https://github.com/thi-ng/umbrella/tree/develop/packages/fibers) - Process hierarchies & operators for cooperative multitasking
|
|
91
|
+
- [@thi.ng/rstream](https://github.com/thi-ng/umbrella/tree/develop/packages/rstream) - Reactive streams & subscription primitives for constructing dataflow graphs / pipelines
|
|
92
|
+
|
|
86
93
|
## Installation
|
|
87
94
|
|
|
88
95
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/transducers-async",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Async versions of various highly composable transducers, reducers and iterators",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"build": "yarn build:esbuild && yarn build:decl",
|
|
28
28
|
"build:decl": "tsc --declaration --emitDeclarationOnly",
|
|
29
29
|
"build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
|
|
30
|
-
"clean": "
|
|
30
|
+
"clean": "bun ../../tools/src/clean-package.ts",
|
|
31
31
|
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
|
|
32
32
|
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
|
|
33
33
|
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
|
|
@@ -36,17 +36,16 @@
|
|
|
36
36
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@thi.ng/api": "^8.11.
|
|
40
|
-
"@thi.ng/buffers": "^0.1.
|
|
41
|
-
"@thi.ng/checks": "^3.6.
|
|
42
|
-
"@thi.ng/compose": "^3.0.
|
|
43
|
-
"@thi.ng/errors": "^2.5.
|
|
44
|
-
"@thi.ng/transducers": "^9.0.
|
|
39
|
+
"@thi.ng/api": "^8.11.1",
|
|
40
|
+
"@thi.ng/buffers": "^0.1.2",
|
|
41
|
+
"@thi.ng/checks": "^3.6.3",
|
|
42
|
+
"@thi.ng/compose": "^3.0.3",
|
|
43
|
+
"@thi.ng/errors": "^2.5.6",
|
|
44
|
+
"@thi.ng/transducers": "^9.0.4"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@microsoft/api-extractor": "^7.43.0",
|
|
48
48
|
"esbuild": "^0.20.2",
|
|
49
|
-
"rimraf": "^5.0.5",
|
|
50
49
|
"typedoc": "^0.25.12",
|
|
51
50
|
"typescript": "^5.4.3"
|
|
52
51
|
},
|
|
@@ -59,6 +58,7 @@
|
|
|
59
58
|
"infinite",
|
|
60
59
|
"iterator",
|
|
61
60
|
"lazy",
|
|
61
|
+
"multitasking",
|
|
62
62
|
"partition",
|
|
63
63
|
"pipeline",
|
|
64
64
|
"reducer",
|
|
@@ -196,8 +196,13 @@
|
|
|
196
196
|
"thi.ng": {
|
|
197
197
|
"alias": "txa",
|
|
198
198
|
"parent": "@thi.ng/transducers",
|
|
199
|
+
"related": [
|
|
200
|
+
"csp",
|
|
201
|
+
"fibers",
|
|
202
|
+
"rstream"
|
|
203
|
+
],
|
|
199
204
|
"status": "alpha",
|
|
200
205
|
"year": 2018
|
|
201
206
|
},
|
|
202
|
-
"gitHead": "
|
|
207
|
+
"gitHead": "aed3421c21044c005fbcb7cc37965ccf85a870d2\n"
|
|
203
208
|
}
|