@lvce-editor/editor-worker 19.27.2 → 19.27.3
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.
- package/dist/editorWorkerMain.js +5 -1
- package/package.json +1 -1
package/dist/editorWorkerMain.js
CHANGED
|
@@ -1620,7 +1620,11 @@ const getPreference = async key => {
|
|
|
1620
1620
|
return await invoke$b('Preferences.get', key);
|
|
1621
1621
|
};
|
|
1622
1622
|
const openUri = async (uri, focus, options) => {
|
|
1623
|
-
await invoke$b('Main.openUri',
|
|
1623
|
+
await invoke$b('Main.openUri', {
|
|
1624
|
+
...options,
|
|
1625
|
+
focus,
|
|
1626
|
+
uri
|
|
1627
|
+
});
|
|
1624
1628
|
};
|
|
1625
1629
|
const sendMessagePortToSyntaxHighlightingWorker$1 = async port => {
|
|
1626
1630
|
await invokeAndTransfer('SendMessagePortToSyntaxHighlightingWorker.sendMessagePortToSyntaxHighlightingWorker', port, 'HandleMessagePort.handleMessagePort2');
|