@lvce-editor/extension-host-worker 1.3.0 → 1.3.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.
@@ -1843,7 +1843,7 @@ const createRpcWithId = ({
1843
1843
  const lazyRpc = {
1844
1844
  async invoke(method, ...params) {
1845
1845
  const rpc = await getOrCreateRpc(id);
1846
- await rpc.invoke(method, ...params);
1846
+ return rpc.invoke(method, ...params);
1847
1847
  }
1848
1848
  };
1849
1849
  return lazyRpc;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/extension-host-worker",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Webworker for the extension host functionality in Lvce Editor.",
5
5
  "main": "dist/extensionHostWorkerMain.js",
6
6
  "type": "module",