@solid-primitives/deep 0.3.2 → 0.3.3

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.
@@ -1,4 +1,4 @@
1
- import { Store } from "solid-js/store";
1
+ import { type Store } from "solid-js/store";
2
2
  /**
3
3
  * Tracks all properties of a {@link store} by iterating over them recursively.
4
4
  *
@@ -1,4 +1,5 @@
1
1
  import { $PROXY } from "solid-js";
2
+ import {} from "solid-js/store";
2
3
  /**
3
4
  * Tracks all properties of a {@link store} by iterating over them recursively.
4
5
  *
@@ -1,4 +1,4 @@
1
- import { Store } from "solid-js/store";
1
+ import { type Store } from "solid-js/store";
2
2
  /**
3
3
  * Tracks all nested changes to passed {@link store}.
4
4
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solid-primitives/deep",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Primitives for tracking and observing nested reactive objects in Solid.",
5
5
  "author": "Samuel Burbano <me@iosamuel.dev>",
6
6
  "contributors": [
@@ -51,17 +51,17 @@
51
51
  },
52
52
  "typesVersions": {},
53
53
  "dependencies": {
54
- "@solid-primitives/memo": "^1.4.2"
54
+ "@solid-primitives/memo": "^1.4.3"
55
55
  },
56
56
  "peerDependencies": {
57
57
  "solid-js": "^1.6.12"
58
58
  },
59
59
  "devDependencies": {
60
- "solid-js": "^1.8.7"
60
+ "solid-js": "^1.9.7"
61
61
  },
62
62
  "scripts": {
63
- "dev": "tsx ../../scripts/dev.ts",
64
- "build": "tsx ../../scripts/build.ts",
63
+ "dev": "node --import=@nothing-but/node-resolve-ts --experimental-transform-types ../../scripts/dev.ts",
64
+ "build": "node --import=@nothing-but/node-resolve-ts --experimental-transform-types ../../scripts/build.ts",
65
65
  "vitest": "vitest -c ../../configs/vitest.config.ts",
66
66
  "test": "pnpm run vitest",
67
67
  "test:ssr": "pnpm run vitest --mode ssr"