@lvce-editor/extension-host-worker 5.4.0 → 5.5.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.
|
@@ -3988,6 +3988,10 @@ const createWebViewWorkerRpc = async (rpcInfo, port) => {
|
|
|
3988
3988
|
});
|
|
3989
3989
|
};
|
|
3990
3990
|
|
|
3991
|
+
const executeExternalCommand = (method, ...params) => {
|
|
3992
|
+
return invoke$2(method, ...params);
|
|
3993
|
+
};
|
|
3994
|
+
|
|
3991
3995
|
const BraceCompletionExecuteBraceCompletionProvider = 'ExtensionHostBraceCompletion.executeBraceCompletionProvider';
|
|
3992
3996
|
const ClosingTagExecuteClosingTagProvider = 'ExtensionHostClosingTag.executeClosingTagProvider';
|
|
3993
3997
|
const CommandExecute = 'ExtensionHostCommand.executeCommand';
|
|
@@ -5562,6 +5566,7 @@ const commandMap = {
|
|
|
5562
5566
|
'ColorTheme.getColorThemeNames': getColorThemeNames,
|
|
5563
5567
|
'ColorTheme.hydrate': hydrate$1,
|
|
5564
5568
|
'ExtensionHost.launchIframeWorker': launchIframeWorker,
|
|
5569
|
+
'ExecuteExternalCommand.executeExternalCommand': executeExternalCommand,
|
|
5565
5570
|
'ExtensionHostDebug.evaluate': evaluate,
|
|
5566
5571
|
'ExtensionHostDebug.getProperties': getProperties,
|
|
5567
5572
|
'ExtensionHostDebug.listProcesses': listProcesses,
|