@thi.ng/compose 2.1.68 → 2.1.69

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/compose",
3
- "version": "2.1.68",
3
+ "version": "2.1.69",
4
4
  "description": "Optimized functional composition helpers",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -36,15 +36,15 @@
36
36
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
37
37
  },
38
38
  "dependencies": {
39
- "@thi.ng/api": "^8.9.29",
40
- "@thi.ng/errors": "^2.4.20"
39
+ "@thi.ng/api": "^8.9.30",
40
+ "@thi.ng/errors": "^2.5.0"
41
41
  },
42
42
  "devDependencies": {
43
- "@microsoft/api-extractor": "^7.40.1",
44
- "esbuild": "^0.20.0",
43
+ "@microsoft/api-extractor": "^7.42.3",
44
+ "esbuild": "^0.20.1",
45
45
  "rimraf": "^5.0.5",
46
- "typedoc": "^0.25.7",
47
- "typescript": "^5.3.3"
46
+ "typedoc": "^0.25.12",
47
+ "typescript": "^5.4.2"
48
48
  },
49
49
  "keywords": [
50
50
  "async",
@@ -106,5 +106,5 @@
106
106
  "default": "./trampoline.js"
107
107
  }
108
108
  },
109
- "gitHead": "69100942474942f7446ac645d59d91e7dfc352f9\n"
109
+ "gitHead": "7f3fcbd6c0462b0ce45afa141fe163d1f297fd51\n"
110
110
  }
package/promisify.d.ts CHANGED
@@ -8,7 +8,7 @@ import type { Fn, Fn2 } from "@thi.ng/api";
8
8
  * callback, which then either resolves or rejects the promise.
9
9
  *
10
10
  * @example
11
- * ```ts
11
+ * ```ts tangle:../export/promisify.ts
12
12
  * import { promisify } from "@thi.ng/compose";
13
13
  *
14
14
  * (async () => {
package/thread-first.d.ts CHANGED
@@ -12,7 +12,7 @@ import type { FnAny } from "@thi.ng/api";
12
12
  * execution (same as the `->` operator/macro in Clojure).
13
13
  *
14
14
  * @example
15
- * ```ts
15
+ * ```ts tangle:../export/thread-first.ts
16
16
  * import { threadFirst } from "@thi.ng/compose";
17
17
  *
18
18
  * const neg = (x) => -x;
package/thread-last.d.ts CHANGED
@@ -12,7 +12,7 @@ import type { FnAny } from "@thi.ng/api";
12
12
  * execution (same as the `->>` operator/macro in Clojure).
13
13
  *
14
14
  * @example
15
- * ```ts
15
+ * ```ts tangle:../export/thread-last.ts
16
16
  * import { threadLast } from "@thi.ng/compose";
17
17
  *
18
18
  * const neg = (x) => -x;
package/trampoline.d.ts CHANGED
@@ -14,7 +14,7 @@ import type { Fn0 } from "@thi.ng/api";
14
14
  * consumes max. 2 extra stack frames, independent from recursion depth.
15
15
  *
16
16
  * @example
17
- * ```ts
17
+ * ```ts tangle:../export/trampoline.ts
18
18
  * import { trampoline } from "@thi.ng/compose";
19
19
  *
20
20
  * const countdown = (acc, x) =>