@rljson/rljson 0.0.60 → 0.0.61
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/dist/rljson.js +1 -1
- package/package.json +9 -9
package/dist/rljson.js
CHANGED
|
@@ -971,7 +971,7 @@ const removeDuplicates = (rljson) => {
|
|
|
971
971
|
);
|
|
972
972
|
result[key] = { ...table, _data: newData };
|
|
973
973
|
}
|
|
974
|
-
return hip(result, { throwOnWrongHashes: false });
|
|
974
|
+
return hip(result, { throwOnWrongHashes: false, updateExistingHashes: true });
|
|
975
975
|
};
|
|
976
976
|
// @license
|
|
977
977
|
const timeId = () => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rljson/rljson",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.61",
|
|
4
4
|
"description": "The RLJSON data format specification",
|
|
5
5
|
"homepage": "https://github.com/rljson/rljson",
|
|
6
6
|
"bugs": "https://github.com/rljson/rljson/issues",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
],
|
|
21
21
|
"type": "module",
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@types/node": "^24.
|
|
24
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
25
|
-
"@typescript-eslint/parser": "^8.
|
|
23
|
+
"@types/node": "^24.6.1",
|
|
24
|
+
"@typescript-eslint/eslint-plugin": "^8.45.0",
|
|
25
|
+
"@typescript-eslint/parser": "^8.45.0",
|
|
26
26
|
"@vitest/coverage-v8": "^3.2.4",
|
|
27
|
-
"cross-env": "^10.
|
|
27
|
+
"cross-env": "^10.1.0",
|
|
28
28
|
"eslint": "^9.36.0",
|
|
29
|
-
"eslint-plugin-jsdoc": "^60.
|
|
29
|
+
"eslint-plugin-jsdoc": "^60.7.0",
|
|
30
30
|
"eslint-plugin-tsdoc": "^0.4.0",
|
|
31
31
|
"globals": "^16.4.0",
|
|
32
32
|
"jsdoc": "^4.0.4",
|
|
33
33
|
"read-pkg": "^9.0.1",
|
|
34
|
-
"typescript": "~5.9.
|
|
35
|
-
"typescript-eslint": "^8.
|
|
34
|
+
"typescript": "~5.9.3",
|
|
35
|
+
"typescript-eslint": "^8.45.0",
|
|
36
36
|
"vite": "^7.1.7",
|
|
37
37
|
"vite-node": "^3.2.4",
|
|
38
38
|
"vite-plugin-dts": "^4.5.4",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@rljson/hash": "^0.0.16",
|
|
45
|
-
"@rljson/json": "^0.0.
|
|
45
|
+
"@rljson/json": "^0.0.22",
|
|
46
46
|
"nanoid": "^5.1.6"
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|