@thi.ng/fibers 0.6.27 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-03-07T20:40:47Z
3
+ - **Last updated**: 2024-03-13T14:04:31Z
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/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?: number | IReadWriteBuffer<T> | undefined, opts?: Partial<FiberOpts>) => Channel<T>;
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 f
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
@@ -174,7 +174,7 @@ let Fiber = class {
174
174
  * // main end
175
175
  * ```
176
176
  *
177
- * @param f
177
+ * @param body
178
178
  * @param opts
179
179
  */
180
180
  fork(body, opts) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/fibers",
3
- "version": "0.6.27",
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.28",
40
- "@thi.ng/arrays": "^2.8.6",
41
- "@thi.ng/bench": "^3.4.32",
42
- "@thi.ng/checks": "^3.5.2",
43
- "@thi.ng/errors": "^2.4.20",
44
- "@thi.ng/idgen": "^2.2.32",
45
- "@thi.ng/logger": "^3.0.5",
46
- "@thi.ng/random": "^3.6.35"
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.40.1",
50
- "esbuild": "^0.20.0",
49
+ "@microsoft/api-extractor": "^7.42.3",
50
+ "esbuild": "^0.20.1",
51
51
  "rimraf": "^5.0.5",
52
- "typedoc": "^0.25.7",
53
- "typescript": "^5.3.3"
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": "a421058a65ba76608d94129ac29451bfedaf201c\n"
112
+ "gitHead": "7f3fcbd6c0462b0ce45afa141fe163d1f297fd51\n"
113
113
  }