@solid-primitives/deep 1.0.0-next.0 → 1.0.0-next.1
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/index.js +3 -0
- package/dist/store-updates.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
export * from "./track-deep.js";
|
|
2
2
|
export * from "./track-store.js";
|
|
3
3
|
export * from "./store-updates.js";
|
|
4
|
+
export { trackDeep, deepTrack } from "./track-deep.js";
|
|
5
|
+
export { trackStore } from "./track-store.js";
|
|
6
|
+
export { captureStoreUpdates } from "./store-updates.js";
|
package/dist/store-updates.js
CHANGED
|
@@ -124,7 +124,7 @@ export function captureStoreUpdates(store) {
|
|
|
124
124
|
}
|
|
125
125
|
if (!(typeof store === "object" && store !== null && $TRACK in store)) {
|
|
126
126
|
if (DEV) {
|
|
127
|
-
//
|
|
127
|
+
// oxlint-disable-next-line no-console
|
|
128
128
|
console.warn("captureStoreUpdates expects a store, got", store);
|
|
129
129
|
}
|
|
130
130
|
let init = true;
|
package/package.json
CHANGED