@lvce-editor/extension-host-worker 5.35.0 → 5.37.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.
@@ -738,11 +738,8 @@ const {
738
738
  executeCommentProvider
739
739
  } = create$b({
740
740
  name: 'Comment',
741
- resultShape: {
742
- type: Array$1,
743
- items: {
744
- type: Object$1
745
- }
741
+ resultShape() {
742
+ return '';
746
743
  }
747
744
  });
748
745
 
@@ -3173,7 +3170,8 @@ const getEnabledProviderIds = async (scheme, root) => {
3173
3170
  };
3174
3171
  const getIconDefinitions = async providerId => {
3175
3172
  const extensions = await getExtensions();
3176
- for (const extension of extensions) {
3173
+ const allExtensions = [...extensions, state$9.webExtensions];
3174
+ for (const extension of allExtensions) {
3177
3175
  const id = extension.id.split('.');
3178
3176
  const shortId = id[1];
3179
3177
  if (shortId === providerId && extension['source-control-icons'] && Array.isArray(extension['source-control-icons'])) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/extension-host-worker",
3
- "version": "5.35.0",
3
+ "version": "5.37.0",
4
4
  "description": "Webworker for the extension host functionality in Lvce Editor.",
5
5
  "keywords": [
6
6
  "web-worker"