@thi.ng/compose 2.1.45 → 2.1.46

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-10-30T14:31:56Z
3
+ - **Last updated**: 2023-11-09T10:02:12Z
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/README.md CHANGED
@@ -49,7 +49,7 @@ For Node.js REPL:
49
49
  const compose = await import("@thi.ng/compose");
50
50
  ```
51
51
 
52
- Package sizes (brotli'd, pre-treeshake): ESM: 751 bytes
52
+ Package sizes (brotli'd, pre-treeshake): ESM: 858 bytes
53
53
 
54
54
  ## Dependencies
55
55
 
package/delay.js CHANGED
@@ -1,5 +1,8 @@
1
1
  export const delay = (body) => new Delay(body);
2
2
  export class Delay {
3
+ value;
4
+ body;
5
+ realized;
3
6
  constructor(body) {
4
7
  this.body = body;
5
8
  this.realized = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/compose",
3
- "version": "2.1.45",
3
+ "version": "2.1.46",
4
4
  "description": "Optimized functional composition helpers",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -28,21 +28,20 @@
28
28
  "clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
29
29
  "doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
30
30
  "doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
31
- "doc:readme": "yarn doc:stats && tools:readme",
32
- "doc:stats": "tools:module-stats",
31
+ "doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
33
32
  "pub": "yarn npm publish --access public",
34
- "test": "testament test"
33
+ "test": "bun test"
35
34
  },
36
35
  "dependencies": {
37
- "@thi.ng/api": "^8.9.6",
38
- "@thi.ng/errors": "^2.4.0"
36
+ "@thi.ng/api": "^8.9.7",
37
+ "@thi.ng/errors": "^2.4.1"
39
38
  },
40
39
  "devDependencies": {
41
- "@microsoft/api-extractor": "^7.38.0",
42
- "@thi.ng/testament": "^0.3.24",
40
+ "@microsoft/api-extractor": "^7.38.2",
41
+ "@thi.ng/testament": "^0.4.0",
43
42
  "rimraf": "^5.0.5",
44
43
  "tools": "^0.0.1",
45
- "typedoc": "^0.25.2",
44
+ "typedoc": "^0.25.3",
46
45
  "typescript": "^5.2.2"
47
46
  },
48
47
  "keywords": [
@@ -105,5 +104,5 @@
105
104
  "default": "./trampoline.js"
106
105
  }
107
106
  },
108
- "gitHead": "bfa16829786146bd24df3cdbd44649a45a603e44\n"
107
+ "gitHead": "9f4d8ad79bca1d68214fbc9bbc5fb55f5a445f7e\n"
109
108
  }