@thi.ng/fibers 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 +1 -1
- package/package.json +31 -12
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -119,7 +119,7 @@ The following operators act as basic composition helpers to construct more elabo
|
|
|
119
119
|
- [`forkAll`](https://docs.thi.ng/umbrella/fibers/classes/Fiber.html#forkAll): create & attach multiple child processes
|
|
120
120
|
- [`join`](https://docs.thi.ng/umbrella/fibers/classes/Fiber.html#join): wait for all child processes to complete
|
|
121
121
|
- [`sequence`](https://docs.thi.ng/umbrella/fibers/functions/sequence.html): execute fibers in sequence
|
|
122
|
-
- [`shuffle`](https://docs.thi.ng/umbrella/fibers/functions/shuffle.html): execute fibers in constantly randomized order
|
|
122
|
+
- [`shuffle`](https://docs.thi.ng/umbrella/fibers/functions/shuffle-1.html): execute fibers in constantly randomized order
|
|
123
123
|
- [`timeSlice`](https://docs.thi.ng/umbrella/fibers/functions/timeSlice.html): execute fiber in batches of N milliseconds
|
|
124
124
|
- [`until`](https://docs.thi.ng/umbrella/fibers/functions/until.html): wait until predicate is truthy
|
|
125
125
|
- [`untilEvent`](https://docs.thi.ng/umbrella/fibers/functions/untilEvent.html): wait until event occurs
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/fibers",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Process hierarchies & operators for cooperative multitasking",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,24 +34,43 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.9.
|
|
38
|
-
"@thi.ng/arrays": "^2.5.
|
|
39
|
-
"@thi.ng/bench": "^3.4.
|
|
40
|
-
"@thi.ng/checks": "^3.4.
|
|
41
|
-
"@thi.ng/errors": "^2.3.
|
|
42
|
-
"@thi.ng/idgen": "^2.2.
|
|
43
|
-
"@thi.ng/logger": "^1.4.
|
|
44
|
-
"@thi.ng/random": "^3.
|
|
37
|
+
"@thi.ng/api": "^8.9.3",
|
|
38
|
+
"@thi.ng/arrays": "^2.5.19",
|
|
39
|
+
"@thi.ng/bench": "^3.4.4",
|
|
40
|
+
"@thi.ng/checks": "^3.4.3",
|
|
41
|
+
"@thi.ng/errors": "^2.3.3",
|
|
42
|
+
"@thi.ng/idgen": "^2.2.4",
|
|
43
|
+
"@thi.ng/logger": "^1.4.19",
|
|
44
|
+
"@thi.ng/random": "^3.6.1"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@microsoft/api-extractor": "^7.36.
|
|
48
|
-
"@thi.ng/testament": "^0.3.
|
|
47
|
+
"@microsoft/api-extractor": "^7.36.4",
|
|
48
|
+
"@thi.ng/testament": "^0.3.21",
|
|
49
49
|
"rimraf": "^5.0.1",
|
|
50
50
|
"tools": "^0.0.1",
|
|
51
51
|
"typedoc": "^0.24.8",
|
|
52
52
|
"typescript": "^5.1.6"
|
|
53
53
|
},
|
|
54
54
|
"keywords": [
|
|
55
|
+
"blocking",
|
|
56
|
+
"buffer",
|
|
57
|
+
"cancel",
|
|
58
|
+
"channel",
|
|
59
|
+
"communication",
|
|
60
|
+
"composition",
|
|
61
|
+
"coroutines",
|
|
62
|
+
"csp",
|
|
63
|
+
"event",
|
|
64
|
+
"fiber",
|
|
65
|
+
"fork",
|
|
66
|
+
"generator",
|
|
67
|
+
"logger",
|
|
68
|
+
"multitasking",
|
|
69
|
+
"process",
|
|
70
|
+
"promise",
|
|
71
|
+
"scheduler",
|
|
72
|
+
"shuffle",
|
|
73
|
+
"time",
|
|
55
74
|
"typescript"
|
|
56
75
|
],
|
|
57
76
|
"publishConfig": {
|
|
@@ -89,5 +108,5 @@
|
|
|
89
108
|
"status": "alpha",
|
|
90
109
|
"year": 2023
|
|
91
110
|
},
|
|
92
|
-
"gitHead": "
|
|
111
|
+
"gitHead": "4154283d772824d4b57d4b7ab97be22a6e1ffdd7\n"
|
|
93
112
|
}
|