@thi.ng/transducers-patch 0.4.41 → 0.4.42

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-03-02T18:09:03Z
3
+ - **Last updated**: 2023-03-09T13:01:59Z
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
@@ -149,7 +149,7 @@ const initialState: any = { x: 23 };
149
149
 
150
150
  // create transformed stream mapping patch commands to states
151
151
  // since `patchArray` is only a reducer, we need to wrap it w/ the `scan` transducer
152
- // see: https://docs.thi.ng/umbrella/transducers/modules.html#scan
152
+ // see: https://docs.thi.ng/umbrella/transducers/functions/scan.html
153
153
  export const state = stream<PatchObjOp>().transform(
154
154
  scan(patchObj(), initialState)
155
155
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/transducers-patch",
3
- "version": "0.4.41",
3
+ "version": "0.4.42",
4
4
  "description": "Reducers for patch-based, immutable-by-default array & object editing",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -38,11 +38,11 @@
38
38
  "@thi.ng/checks": "^3.3.9",
39
39
  "@thi.ng/errors": "^2.2.12",
40
40
  "@thi.ng/paths": "^5.1.32",
41
- "@thi.ng/transducers": "^8.3.36"
41
+ "@thi.ng/transducers": "^8.3.37"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@microsoft/api-extractor": "^7.34.2",
45
- "@thi.ng/testament": "^0.3.11",
45
+ "@thi.ng/testament": "^0.3.12",
46
46
  "rimraf": "^4.1.2",
47
47
  "tools": "^0.0.1",
48
48
  "typedoc": "^0.23.24",
@@ -86,5 +86,5 @@
86
86
  "status": "alpha",
87
87
  "year": 2020
88
88
  },
89
- "gitHead": "8342900eedc77bb09edb8c544804578b71f8acc6\n"
89
+ "gitHead": "8ab2cbfe2f59b7ef672b6e1cf2a43368f8437ddf\n"
90
90
  }