@thi.ng/compose 2.1.34 → 2.1.35

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-06-14T07:58:51Z
3
+ - **Last updated**: 2023-08-04T10:58:19Z
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.
@@ -9,6 +9,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
9
9
  **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
10
10
  and/or version bumps of transitive dependencies.
11
11
 
12
+ ### [2.1.35](https://github.com/thi-ng/umbrella/tree/@thi.ng/compose@2.1.35) (2023-08-04)
13
+
14
+ #### ♻️ Refactoring
15
+
16
+ - update `identity` usage in various pkgs ([b6db053](https://github.com/thi-ng/umbrella/commit/b6db053))
17
+
12
18
  ## [2.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/compose@2.1.0) (2021-11-17)
13
19
 
14
20
  #### 🚀 Features
package/identity.d.ts CHANGED
@@ -1,2 +1,7 @@
1
+ /**
2
+ * Same as eponymous function in thi.ng/api. Identity function: `(x) => x`.
3
+ *
4
+ * @param x
5
+ */
1
6
  export declare const identity: <T>(x: T) => T;
2
7
  //# sourceMappingURL=identity.d.ts.map
package/identity.js CHANGED
@@ -1 +1,6 @@
1
+ /**
2
+ * Same as eponymous function in thi.ng/api. Identity function: `(x) => x`.
3
+ *
4
+ * @param x
5
+ */
1
6
  export const identity = (x) => x;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/compose",
3
- "version": "2.1.34",
3
+ "version": "2.1.35",
4
4
  "description": "Optimized functional composition helpers",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,16 +34,16 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.8.2",
38
- "@thi.ng/errors": "^2.2.17"
37
+ "@thi.ng/api": "^8.9.0",
38
+ "@thi.ng/errors": "^2.3.0"
39
39
  },
40
40
  "devDependencies": {
41
- "@microsoft/api-extractor": "^7.35.3",
42
- "@thi.ng/testament": "^0.3.17",
41
+ "@microsoft/api-extractor": "^7.36.3",
42
+ "@thi.ng/testament": "^0.3.18",
43
43
  "rimraf": "^5.0.1",
44
44
  "tools": "^0.0.1",
45
45
  "typedoc": "^0.24.8",
46
- "typescript": "^5.1.3"
46
+ "typescript": "^5.1.6"
47
47
  },
48
48
  "keywords": [
49
49
  "async",
@@ -105,5 +105,5 @@
105
105
  "default": "./trampoline.js"
106
106
  }
107
107
  },
108
- "gitHead": "54e825a976c72067a244cff8725ca98f5416d26d\n"
108
+ "gitHead": "9fa3f7f8169efa30e3c71b43c82f77393581c3b5\n"
109
109
  }