hinted-tree-merger 6.2.3 → 6.2.5
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/package.json +7 -7
- package/src/util.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hinted-tree-merger",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.5",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -40,15 +40,15 @@
|
|
|
40
40
|
"lint:typescript": "tsc --allowJs --checkJs --noEmit --resolveJsonModule -t esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"ava": "^6.1.
|
|
44
|
-
"browser-ava": "^2.2.
|
|
45
|
-
"c8": "^
|
|
43
|
+
"ava": "^6.1.3",
|
|
44
|
+
"browser-ava": "^2.2.26",
|
|
45
|
+
"c8": "^10.1.2",
|
|
46
46
|
"documentation": "^14.0.3",
|
|
47
|
-
"semantic-release": "^
|
|
48
|
-
"typescript": "^5.4
|
|
47
|
+
"semantic-release": "^24.0.0",
|
|
48
|
+
"typescript": "^5.5.4"
|
|
49
49
|
},
|
|
50
50
|
"engines": {
|
|
51
|
-
"node": ">=
|
|
51
|
+
"node": ">=22.5.1"
|
|
52
52
|
},
|
|
53
53
|
"repository": {
|
|
54
54
|
"type": "git",
|
package/src/util.mjs
CHANGED
|
@@ -292,7 +292,7 @@ export function indexFor(b, i, a) {
|
|
|
292
292
|
}
|
|
293
293
|
|
|
294
294
|
function normalizeValue(value, hint) {
|
|
295
|
-
if
|
|
295
|
+
if(typeof(value) === "string" && hint.normalizeValue) {
|
|
296
296
|
return value.replace(new RegExp(hint.normalizeValue), "");
|
|
297
297
|
}
|
|
298
298
|
return value;
|