@lvce-editor/extension-host-worker 3.19.0 → 3.20.0

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.
@@ -3679,7 +3679,7 @@ const getWebExtensions = async () => {
3679
3679
  const getSharedProcessExtensions = () => {
3680
3680
  return invoke$2(/* ExtensionManagement.getExtensions */'ExtensionManagement.getExtensions');
3681
3681
  };
3682
- const getExtensions$1 = async () => {
3682
+ const doGetExtensions = async () => {
3683
3683
  if (platform === Web) {
3684
3684
  const webExtensions = await getWebExtensions();
3685
3685
  return webExtensions;
@@ -3693,6 +3693,10 @@ const getExtensions$1 = async () => {
3693
3693
  return extensions;
3694
3694
  };
3695
3695
 
3696
+ const getExtensions$1 = async () => {
3697
+ return doGetExtensions();
3698
+ };
3699
+
3696
3700
  const cache = Object.create(null);
3697
3701
  const id = 1;
3698
3702
  const get = () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/extension-host-worker",
3
- "version": "3.19.0",
3
+ "version": "3.20.0",
4
4
  "description": "Webworker for the extension host functionality in Lvce Editor.",
5
5
  "main": "dist/extensionHostWorkerMain.js",
6
6
  "type": "module",