@thi.ng/compose 2.0.1 → 2.0.2

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
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/compose@2.0.1...@thi.ng/compose@2.0.2) (2021-10-15)
7
+
8
+ **Note:** Version bump only for package @thi.ng/compose
9
+
10
+
11
+
12
+
13
+
6
14
  ## [2.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/compose@2.0.0...@thi.ng/compose@2.0.1) (2021-10-13)
7
15
 
8
16
  **Note:** Version bump only for package @thi.ng/compose
package/README.md CHANGED
@@ -50,7 +50,7 @@ node --experimental-repl-await
50
50
  > const compose = await import("@thi.ng/compose");
51
51
  ```
52
52
 
53
- Package sizes (gzipped, pre-treeshake): ESM: 836 bytes
53
+ Package sizes (gzipped, pre-treeshake): ESM: 825 bytes
54
54
 
55
55
  ## Dependencies
56
56
 
package/delay.js CHANGED
@@ -1,8 +1,5 @@
1
1
  export const delay = (body) => new Delay(body);
2
2
  export class Delay {
3
- value;
4
- body;
5
- realized;
6
3
  constructor(body) {
7
4
  this.body = body;
8
5
  this.realized = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/compose",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Optimized functional composition helpers",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,11 +34,11 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.0.1",
38
- "@thi.ng/errors": "^2.0.1"
37
+ "@thi.ng/api": "^8.0.2",
38
+ "@thi.ng/errors": "^2.0.2"
39
39
  },
40
40
  "devDependencies": {
41
- "@thi.ng/testament": "^0.1.1"
41
+ "@thi.ng/testament": "^0.1.2"
42
42
  },
43
43
  "keywords": [
44
44
  "async",
@@ -100,5 +100,5 @@
100
100
  "import": "./trampoline.js"
101
101
  }
102
102
  },
103
- "gitHead": "2e6b3d7c0f4c5686c1e9bdb4902ed7d3f90bcc19"
103
+ "gitHead": "3c5f903104da150588946a94bb118ad559ad395d"
104
104
  }