@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.
- package/CHANGELOG.md +1 -1
- package/README.md +2 -2
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
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:
|
|
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 -
|
|
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.
|
|
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.
|
|
38
|
-
"@thi.ng/checks": "^3.1.
|
|
39
|
-
"@thi.ng/errors": "^2.1.
|
|
40
|
-
"@thi.ng/paths": "^5.1.
|
|
41
|
-
"@thi.ng/transducers": "^8.2
|
|
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.
|
|
45
|
-
"@thi.ng/testament": "^0.2.
|
|
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.
|
|
49
|
-
"typescript": "^4.
|
|
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
|
-
"
|
|
72
|
+
"default": "./index.js"
|
|
73
73
|
},
|
|
74
74
|
"./api": {
|
|
75
|
-
"
|
|
75
|
+
"default": "./api.js"
|
|
76
76
|
},
|
|
77
77
|
"./patch-array": {
|
|
78
|
-
"
|
|
78
|
+
"default": "./patch-array.js"
|
|
79
79
|
},
|
|
80
80
|
"./patch-obj": {
|
|
81
|
-
"
|
|
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": "
|
|
89
|
+
"gitHead": "cf084be5fd5932226054d2dd32bad35481379f5d\n"
|
|
90
90
|
}
|