@signaldb/core 1.7.1 → 1.7.2

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.
@@ -36,7 +36,6 @@ function clone(value) {
36
36
  function deepClone(object) {
37
37
  if (typeof structuredClone === "function")
38
38
  return structuredClone(object);
39
- /* istanbul ignore next -- @preserve */
40
39
  return clone(object);
41
40
  }
42
41
  exports.clone = clone;
package/dist/index19.mjs CHANGED
@@ -34,7 +34,6 @@ function clone(value) {
34
34
  function deepClone(object) {
35
35
  if (typeof structuredClone === "function")
36
36
  return structuredClone(object);
37
- /* istanbul ignore next -- @preserve */
38
37
  return clone(object);
39
38
  }
40
39
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signaldb/core",
3
- "version": "1.7.1",
3
+ "version": "1.7.2",
4
4
  "description": "SignalDB is a client-side database that provides a simple MongoDB-like interface to the data with first-class typescript support to achieve an optimistic UI. Data persistence can be achieved by using storage providers that store the data through a JSON interface to places such as localStorage.",
5
5
  "scripts": {
6
6
  "build": "rimraf dist && vite build",
@@ -55,7 +55,7 @@
55
55
  ],
56
56
  "dependencies": {
57
57
  "fast-sort": "^3.4.1",
58
- "mingo": "^6.5.1"
58
+ "mingo": "^7.0.0"
59
59
  },
60
60
  "devDependencies": {
61
61
  "zod": "^4.0.14"