@thi.ng/transducers-patch 0.4.146 → 0.4.147

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**: 2025-01-29T16:25:48Z
3
+ - **Last updated**: 2025-02-13T16:03:11Z
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/transducers-patch",
3
- "version": "0.4.146",
3
+ "version": "0.4.147",
4
4
  "description": "Reducers for patch-based, immutable-by-default array & object editing",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -39,15 +39,15 @@
39
39
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@thi.ng/api": "^8.11.19",
43
- "@thi.ng/checks": "^3.6.22",
44
- "@thi.ng/errors": "^2.5.25",
45
- "@thi.ng/paths": "^5.2.0",
46
- "@thi.ng/transducers": "^9.2.17"
42
+ "@thi.ng/api": "^8.11.20",
43
+ "@thi.ng/checks": "^3.6.23",
44
+ "@thi.ng/errors": "^2.5.26",
45
+ "@thi.ng/paths": "^5.2.1",
46
+ "@thi.ng/transducers": "^9.2.18"
47
47
  },
48
48
  "devDependencies": {
49
- "esbuild": "^0.24.2",
50
- "typedoc": "^0.27.6",
49
+ "esbuild": "^0.25.0",
50
+ "typedoc": "^0.27.7",
51
51
  "typescript": "^5.7.3"
52
52
  },
53
53
  "keywords": [
@@ -88,5 +88,5 @@
88
88
  "status": "alpha",
89
89
  "year": 2020
90
90
  },
91
- "gitHead": "fc1d498e8d4b690db873c30cc594352a804e7a65\n"
91
+ "gitHead": "9a0b33253fef092aaf301decf6ecd54317874d4c\n"
92
92
  }
package/patch-array.d.ts CHANGED
@@ -10,10 +10,11 @@ import type { PatchArrayOp } from "./api.js";
10
10
  * in a non-destructive manner.
11
11
  *
12
12
  * The following patch types are supported:
13
- * - SET
14
- * - UPDATE
15
- * - INSERT
16
- * - DELETE
13
+ *
14
+ * - `SET`
15
+ * - `UPDATE`
16
+ * - `INSERT`
17
+ * - `DELETE`
17
18
  *
18
19
  * @example
19
20
  * ```ts tangle:../export/patch-array.ts
package/patch-obj.d.ts CHANGED
@@ -5,9 +5,10 @@ import type { PatchObjOp } from "./api.js";
5
5
  *
6
6
  * @remarks
7
7
  * Only the following patch types are supported:
8
- * - SET
9
- * - UPDATE
10
- * - DELETE
8
+ *
9
+ * - `SET`
10
+ * - `UPDATE`
11
+ * - `DELETE`
11
12
  */
12
13
  export declare function patchObj(): Reducer<PatchObjOp, any>;
13
14
  export declare function patchObj(init: any, patches: Iterable<PatchObjOp>): any;