@lvce-editor/shared-process 0.87.0 → 0.87.2

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.
@@ -50,6 +50,7 @@
50
50
  "workbench.colorTheme": "slime",
51
51
  "workbench.iconTheme": "vscode-icons",
52
52
  "workbench.activityBar.visible": true,
53
+ "workbench.editor.showTabsWhileLoading": false,
53
54
  "workbench.sideBar.visible": true,
54
55
  "workbench.sideBarLocation": "right",
55
56
  "workbench.saveStateOnVisibilityChange": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/shared-process",
3
- "version": "0.87.0",
3
+ "version": "0.87.2",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -19,7 +19,7 @@
19
19
  "dependencies": {
20
20
  "@lvce-editor/assert": "1.7.0",
21
21
  "@lvce-editor/auth-process": "1.8.0",
22
- "@lvce-editor/extension-host-helper-process": "0.87.0",
22
+ "@lvce-editor/extension-host-helper-process": "0.87.2",
23
23
  "@lvce-editor/ipc": "16.3.0",
24
24
  "@lvce-editor/json-rpc": "8.2.0",
25
25
  "@lvce-editor/jsonc-parser": "1.5.0",
@@ -31,7 +31,7 @@
31
31
  "xdg-basedir": "^5.1.0"
32
32
  },
33
33
  "optionalDependencies": {
34
- "@lvce-editor/embeds-process": "4.8.0",
34
+ "@lvce-editor/embeds-process": "4.9.0",
35
35
  "@lvce-editor/file-system-process": "5.3.0",
36
36
  "@lvce-editor/file-watcher-process": "4.2.0",
37
37
  "@lvce-editor/network-process": "5.2.0",
@@ -3,6 +3,6 @@ import { fileURLToPath } from 'url'
3
3
 
4
4
  export const getBuiltinExtensionsPath = () => {
5
5
  const staticServerPath = fileURLToPath(import.meta.resolve('@lvce-editor/static-server'))
6
- const builtinExtensionsPath = join(staticServerPath, '..', '..', 'static', '87b59f5', 'extensions')
6
+ const builtinExtensionsPath = join(staticServerPath, '..', '..', 'static', 'c7623f6', 'extensions')
7
7
  return builtinExtensionsPath
8
8
  }
@@ -13,7 +13,7 @@ const internalIdMap = Object.create(null)
13
13
  export const watch = async (ipc, id, { exclude, roots } ) => {
14
14
  const internalId = Id.create()
15
15
  internalIdMap[internalId] = { id, ipc }
16
- await FileWatcherProcess.invoke('FileWatcher.watchFolders', {
16
+ return FileWatcherProcess.invoke('FileWatcher.watchFolders', {
17
17
  exclude,
18
18
  id: internalId,
19
19
  roots,
@@ -270,6 +270,7 @@ export const getModuleId = (commandId) => {
270
270
  case 'Platform.getCacheUri':
271
271
  case 'Platform.getCommit':
272
272
  case 'Platform.getConfigDir':
273
+ case 'Platform.getConfigJsonPath':
273
274
  case 'Platform.getDataDir':
274
275
  case 'Platform.getDate':
275
276
  case 'Platform.getDisabledExtensionsPath':
@@ -61,11 +61,11 @@ export const getSetupName = () => {
61
61
  return 'Lvce-Setup'
62
62
  }
63
63
 
64
- export const version = '0.87.0'
64
+ export const version = '0.87.2'
65
65
 
66
- export const commit = '87b59f5'
66
+ export const commit = 'c7623f6'
67
67
 
68
- export const date = '2026-07-12T18:48:18.000Z'
68
+ export const date = '2026-07-13T10:57:18.000Z'
69
69
 
70
70
  export const getVersion = () => {
71
71
  return version
@@ -2,5 +2,5 @@ import { join } from 'node:path'
2
2
  import * as Root from '../Root/Root.js'
3
3
 
4
4
  export const getPreloadUrl = () => {
5
- return join(Root.root, 'static', '87b59f5', 'packages', 'preload', 'dist', 'index.js')
5
+ return join(Root.root, 'static', 'c7623f6', 'packages', 'preload', 'dist', 'index.js')
6
6
  }