@lvce-editor/extension-host-worker 4.3.0 → 4.4.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.
|
@@ -3708,7 +3708,7 @@ const doGetExtensions = async () => {
|
|
|
3708
3708
|
}
|
|
3709
3709
|
if (platform === Remote) {
|
|
3710
3710
|
const sharedProcessExtensions = await getSharedProcessExtensions();
|
|
3711
|
-
return [...sharedProcessExtensions
|
|
3711
|
+
return [...sharedProcessExtensions, ...meta];
|
|
3712
3712
|
}
|
|
3713
3713
|
const extensions = await getSharedProcessExtensions();
|
|
3714
3714
|
return extensions;
|
|
@@ -5010,7 +5010,7 @@ const getLanguagesFromExtension = extension => {
|
|
|
5010
5010
|
return {
|
|
5011
5011
|
...language,
|
|
5012
5012
|
extensionPath,
|
|
5013
|
-
tokenize: `${extensionPath}/${language.tokenize}`
|
|
5013
|
+
tokenize: getRemoteUrl(`${extensionPath}/${language.tokenize}`)
|
|
5014
5014
|
};
|
|
5015
5015
|
}
|
|
5016
5016
|
return language;
|
package/package.json
CHANGED