@chromahq/store 1.0.5 → 1.0.6
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.cjs.js +0 -1
- package/dist/index.es.js +0 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -454,7 +454,6 @@ class StoreBuilder {
|
|
|
454
454
|
const store = vanilla.createStore(persistedCreator);
|
|
455
455
|
store.subscribe(() => {
|
|
456
456
|
if (runtimeBridge) {
|
|
457
|
-
console.log(runtimeBridge);
|
|
458
457
|
runtimeBridge.broadcast(`store:${this.config.name}:stateChanged`, store.getState());
|
|
459
458
|
}
|
|
460
459
|
});
|
package/dist/index.es.js
CHANGED
|
@@ -434,7 +434,6 @@ class StoreBuilder {
|
|
|
434
434
|
const store = createStore$1(persistedCreator);
|
|
435
435
|
store.subscribe(() => {
|
|
436
436
|
if (runtimeBridge) {
|
|
437
|
-
console.log(runtimeBridge);
|
|
438
437
|
runtimeBridge.broadcast(`store:${this.config.name}:stateChanged`, store.getState());
|
|
439
438
|
}
|
|
440
439
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chromahq/store",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Centralized, persistent store for Chrome extensions using zustand, accessible from service workers and React, with chrome.storage.local persistence.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs.js",
|