hinted-tree-merger 5.0.1 → 5.0.4
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/README.md +1 -1
- package/package.json +5 -5
- package/src/merger.mjs +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[](https://www.npmjs.com/package/hinted-tree-merger)
|
|
2
2
|
[](https://opensource.org/licenses/BSD-3-Clause)
|
|
3
|
-
[](https://bundlejs.com/?q=hinted-tree-merger)
|
|
4
4
|
[](https://npmjs.org/package/hinted-tree-merger)
|
|
5
5
|
[](https://github.com/arlac77/hinted-tree-merger/issues)
|
|
6
6
|
[](https://actions-badge.atrox.dev/arlac77/hinted-tree-merger/goto)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hinted-tree-merger",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -32,13 +32,13 @@
|
|
|
32
32
|
"lint:docs": "documentation lint ./src/**/*.mjs"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"ava": "^4.1
|
|
36
|
-
"c8": "^7.
|
|
35
|
+
"ava": "^4.3.1",
|
|
36
|
+
"c8": "^7.12.0",
|
|
37
37
|
"documentation": "^13.2.5",
|
|
38
|
-
"semantic-release": "^19.0.
|
|
38
|
+
"semantic-release": "^19.0.3"
|
|
39
39
|
},
|
|
40
40
|
"engines": {
|
|
41
|
-
"node": ">=16.
|
|
41
|
+
"node": ">=16.17.0"
|
|
42
42
|
},
|
|
43
43
|
"repository": {
|
|
44
44
|
"type": "git",
|
package/src/merger.mjs
CHANGED
|
@@ -175,7 +175,7 @@ export function merge(a, b, path, actions = nullAction, hints) {
|
|
|
175
175
|
}
|
|
176
176
|
}
|
|
177
177
|
} else {
|
|
178
|
-
const mf = h.merge
|
|
178
|
+
const mf = h.merge || merge;
|
|
179
179
|
const m = mf(av, bv, p, actions, hints);
|
|
180
180
|
|
|
181
181
|
if (h.remove || (h.removeEmpty && isEmpty(m))) {
|