@liveblocks/redux 1.0.7-test1 → 1.0.8
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 +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -182,7 +182,7 @@ var internalEnhancer = (options) => {
|
|
|
182
182
|
store.dispatch({
|
|
183
183
|
type: ACTION_TYPES.START_LOADING_STORAGE
|
|
184
184
|
});
|
|
185
|
-
room.getStorage().then(({ root }) => {
|
|
185
|
+
void room.getStorage().then(({ root }) => {
|
|
186
186
|
const updates = {};
|
|
187
187
|
room.batch(() => {
|
|
188
188
|
for (const key in mapping) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liveblocks/redux",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "A store enhancer to integrate Liveblocks into Redux stores. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"test:watch": "jest --silent --verbose --color=always --watch"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@liveblocks/client": "1.0.
|
|
22
|
-
"@liveblocks/core": "1.0.
|
|
21
|
+
"@liveblocks/client": "1.0.8",
|
|
22
|
+
"@liveblocks/core": "1.0.8"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"redux": "^4"
|