@thi.ng/transducers-patch 0.4.4 → 0.4.7

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/README.md +2 -2
  3. package/package.json +15 -15
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2021-12-13T10:26:00Z
3
+ - **Last updated**: 2022-05-07T11:33:36Z
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
@@ -57,7 +57,7 @@ node --experimental-repl-await
57
57
  > const transducersPatch = await import("@thi.ng/transducers-patch");
58
58
  ```
59
59
 
60
- Package sizes (gzipped, pre-treeshake): ESM: 567 bytes
60
+ Package sizes (gzipped, pre-treeshake): ESM: 569 bytes
61
61
 
62
62
  ## Dependencies
63
63
 
@@ -187,4 +187,4 @@ If this project contributes to an academic publication, please cite it as:
187
187
 
188
188
  ## License
189
189
 
190
- © 2020 - 2021 Karsten Schmidt // Apache Software License 2.0
190
+ © 2020 - 2022 Karsten Schmidt // Apache Software License 2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/transducers-patch",
3
- "version": "0.4.4",
3
+ "version": "0.4.7",
4
4
  "description": "Reducers for patch-based, immutable-by-default array & object editing",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,19 +34,19 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.3.3",
38
- "@thi.ng/checks": "^3.1.3",
39
- "@thi.ng/errors": "^2.1.3",
40
- "@thi.ng/paths": "^5.1.3",
41
- "@thi.ng/transducers": "^8.2.0"
37
+ "@thi.ng/api": "^8.3.6",
38
+ "@thi.ng/checks": "^3.1.6",
39
+ "@thi.ng/errors": "^2.1.6",
40
+ "@thi.ng/paths": "^5.1.6",
41
+ "@thi.ng/transducers": "^8.3.2"
42
42
  },
43
43
  "devDependencies": {
44
- "@microsoft/api-extractor": "^7.19.2",
45
- "@thi.ng/testament": "^0.2.3",
44
+ "@microsoft/api-extractor": "^7.23.1",
45
+ "@thi.ng/testament": "^0.2.6",
46
46
  "rimraf": "^3.0.2",
47
47
  "tools": "^0.0.1",
48
- "typedoc": "^0.22.10",
49
- "typescript": "^4.5.3"
48
+ "typedoc": "^0.22.15",
49
+ "typescript": "^4.6.4"
50
50
  },
51
51
  "keywords": [
52
52
  "array",
@@ -69,16 +69,16 @@
69
69
  ],
70
70
  "exports": {
71
71
  ".": {
72
- "import": "./index.js"
72
+ "default": "./index.js"
73
73
  },
74
74
  "./api": {
75
- "import": "./api.js"
75
+ "default": "./api.js"
76
76
  },
77
77
  "./patch-array": {
78
- "import": "./patch-array.js"
78
+ "default": "./patch-array.js"
79
79
  },
80
80
  "./patch-obj": {
81
- "import": "./patch-obj.js"
81
+ "default": "./patch-obj.js"
82
82
  }
83
83
  },
84
84
  "thi.ng": {
@@ -86,5 +86,5 @@
86
86
  "status": "alpha",
87
87
  "year": 2020
88
88
  },
89
- "gitHead": "1ba92c6b9509e74e509b4c0b875fc380a97bbbc1\n"
89
+ "gitHead": "cf084be5fd5932226054d2dd32bad35481379f5d\n"
90
90
  }