@thi.ng/fibers 0.4.0 → 0.4.1

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**: 2023-09-06T13:36:28Z
3
+ - **Last updated**: 2023-09-15T12:33:37Z
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/ops.d.ts CHANGED
@@ -31,7 +31,7 @@ export declare const sequence: (fibers: Iterable<MaybeFiber>, opts?: Partial<Fib
31
31
  * Also see {@link withTimeout}, {@link all}.
32
32
  *
33
33
  * @example
34
- * ```ta
34
+ * ```ts
35
35
  * // wait until mouse click for max 5 seconds
36
36
  * const res = yield* first([
37
37
  * untilEvent(window, "click", { id: "click" }),
package/ops.js CHANGED
@@ -52,7 +52,7 @@ export const sequence = (fibers, opts) => fiber(function* (ctx) {
52
52
  * Also see {@link withTimeout}, {@link all}.
53
53
  *
54
54
  * @example
55
- * ```ta
55
+ * ```ts
56
56
  * // wait until mouse click for max 5 seconds
57
57
  * const res = yield* first([
58
58
  * untilEvent(window, "click", { id: "click" }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/fibers",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Process hierarchies & operators for cooperative multitasking",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -35,7 +35,7 @@
35
35
  },
36
36
  "dependencies": {
37
37
  "@thi.ng/api": "^8.9.5",
38
- "@thi.ng/arrays": "^2.5.22",
38
+ "@thi.ng/arrays": "^2.5.23",
39
39
  "@thi.ng/bench": "^3.4.6",
40
40
  "@thi.ng/checks": "^3.4.5",
41
41
  "@thi.ng/errors": "^2.3.5",
@@ -108,5 +108,5 @@
108
108
  "status": "alpha",
109
109
  "year": 2023
110
110
  },
111
- "gitHead": "1bbef970bab7f7def0700e587cf0471e1e1ef9f3\n"
111
+ "gitHead": "b2ef5a1b8932d067af4ec2fc7da03d59d6868dc7\n"
112
112
  }