@thi.ng/fibers 0.6.28 → 0.6.29
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/csp.d.ts +1 -1
- package/fiber.d.ts +1 -1
- package/fiber.js +1 -1
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
package/csp.d.ts
CHANGED
|
@@ -104,7 +104,7 @@ export declare class Channel<T> {
|
|
|
104
104
|
* @param buffer
|
|
105
105
|
* @param opts
|
|
106
106
|
*/
|
|
107
|
-
export declare const channel: <T>(buffer?:
|
|
107
|
+
export declare const channel: <T>(buffer?: IReadWriteBuffer<T> | number, opts?: Partial<FiberOpts>) => Channel<T>;
|
|
108
108
|
/**
|
|
109
109
|
* First-in, first-out ring buffer implementation for use with {@link Channel}.
|
|
110
110
|
*/
|
package/fiber.d.ts
CHANGED
|
@@ -109,7 +109,7 @@ export declare class Fiber<T = any> implements IDeref<T | undefined>, IID<string
|
|
|
109
109
|
* // main end
|
|
110
110
|
* ```
|
|
111
111
|
*
|
|
112
|
-
* @param
|
|
112
|
+
* @param body
|
|
113
113
|
* @param opts
|
|
114
114
|
*/
|
|
115
115
|
fork<F>(body?: Nullable<MaybeFiber<F>>, opts?: Partial<FiberOpts>): Fiber<any>;
|
package/fiber.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/fibers",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.29",
|
|
4
4
|
"description": "Process hierarchies & operators for cooperative multitasking",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -36,21 +36,21 @@
|
|
|
36
36
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@thi.ng/api": "^8.9.
|
|
40
|
-
"@thi.ng/arrays": "^2.8.
|
|
41
|
-
"@thi.ng/bench": "^3.
|
|
42
|
-
"@thi.ng/checks": "^3.5.
|
|
43
|
-
"@thi.ng/errors": "^2.
|
|
44
|
-
"@thi.ng/idgen": "^2.2.
|
|
45
|
-
"@thi.ng/logger": "^3.0.
|
|
46
|
-
"@thi.ng/random": "^3.6.
|
|
39
|
+
"@thi.ng/api": "^8.9.30",
|
|
40
|
+
"@thi.ng/arrays": "^2.8.8",
|
|
41
|
+
"@thi.ng/bench": "^3.5.0",
|
|
42
|
+
"@thi.ng/checks": "^3.5.3",
|
|
43
|
+
"@thi.ng/errors": "^2.5.0",
|
|
44
|
+
"@thi.ng/idgen": "^2.2.34",
|
|
45
|
+
"@thi.ng/logger": "^3.0.6",
|
|
46
|
+
"@thi.ng/random": "^3.6.37"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@microsoft/api-extractor": "^7.
|
|
50
|
-
"esbuild": "^0.20.
|
|
49
|
+
"@microsoft/api-extractor": "^7.42.3",
|
|
50
|
+
"esbuild": "^0.20.1",
|
|
51
51
|
"rimraf": "^5.0.5",
|
|
52
|
-
"typedoc": "^0.25.
|
|
53
|
-
"typescript": "^5.
|
|
52
|
+
"typedoc": "^0.25.12",
|
|
53
|
+
"typescript": "^5.4.2"
|
|
54
54
|
},
|
|
55
55
|
"keywords": [
|
|
56
56
|
"blocking",
|
|
@@ -109,5 +109,5 @@
|
|
|
109
109
|
"status": "alpha",
|
|
110
110
|
"year": 2023
|
|
111
111
|
},
|
|
112
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "7f3fcbd6c0462b0ce45afa141fe163d1f297fd51\n"
|
|
113
113
|
}
|