@lvce-editor/shared-process 0.103.2 → 0.103.4
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/package.json +3 -3
- package/src/parts/BuiltinExtensionsPath/BuiltinExtensionsPath.js +1 -1
- package/src/parts/ModuleMap/ModuleMap.js +1 -0
- package/src/parts/Platform/Platform.js +3 -3
- package/src/parts/PreloadUrl/PreloadUrl.js +1 -1
- package/src/parts/Process/Process.ipc.js +1 -0
- package/src/parts/Process/Process.js +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lvce-editor/shared-process",
|
|
3
|
-
"version": "0.103.
|
|
3
|
+
"version": "0.103.4",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@lvce-editor/assert": "1.9.0",
|
|
21
|
-
"@lvce-editor/extension-host-helper-process": "0.103.
|
|
21
|
+
"@lvce-editor/extension-host-helper-process": "0.103.4",
|
|
22
22
|
"@lvce-editor/ipc": "16.11.0",
|
|
23
23
|
"@lvce-editor/json-rpc": "8.6.0",
|
|
24
24
|
"@lvce-editor/jsonc-parser": "1.5.0",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"optionalDependencies": {
|
|
34
34
|
"@lvce-editor/embeds-process": "4.16.0",
|
|
35
|
-
"@lvce-editor/file-system-process": "5.15.
|
|
35
|
+
"@lvce-editor/file-system-process": "5.15.1",
|
|
36
36
|
"@lvce-editor/file-watcher-process": "4.13.0",
|
|
37
37
|
"@lvce-editor/network-process": "5.2.0",
|
|
38
38
|
"@lvce-editor/preload": "1.5.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', '
|
|
6
|
+
const builtinExtensionsPath = join(staticServerPath, '..', '..', 'static', 'a090a74', 'extensions')
|
|
7
7
|
return builtinExtensionsPath
|
|
8
8
|
}
|
|
@@ -273,6 +273,7 @@ export const getModuleId = (commandId) => {
|
|
|
273
273
|
case 'Preferences.getAll':
|
|
274
274
|
return ModuleId.Preferences
|
|
275
275
|
case 'Process.getArch':
|
|
276
|
+
case 'Process.getArgv':
|
|
276
277
|
case 'Process.getNodeVersion':
|
|
277
278
|
case 'Process.getPid':
|
|
278
279
|
case 'Process.getV8Version':
|
|
@@ -61,11 +61,11 @@ export const getSetupName = () => {
|
|
|
61
61
|
return 'Lvce-Setup'
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
-
export const version = '0.103.
|
|
64
|
+
export const version = '0.103.4'
|
|
65
65
|
|
|
66
|
-
export const commit = '
|
|
66
|
+
export const commit = 'a090a74'
|
|
67
67
|
|
|
68
|
-
export const date = '2026-08-16T12:
|
|
68
|
+
export const date = '2026-08-16T12:12:05.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', '
|
|
5
|
+
return join(Root.root, 'static', 'a090a74', 'packages', 'preload', 'dist', 'index.js')
|
|
6
6
|
}
|
|
@@ -4,6 +4,7 @@ export const Commands = {
|
|
|
4
4
|
'Process.crash': Process.crash,
|
|
5
5
|
'Process.crashAsync': Process.crashAsync,
|
|
6
6
|
'Process.getArch': Process.getArch,
|
|
7
|
+
'Process.getArgv': Process.getArgv,
|
|
7
8
|
'Process.getNodeVersion': Process.getNodeVersion,
|
|
8
9
|
'Process.getPid': Process.getPid,
|
|
9
10
|
'Process.getV8Version': Process.getV8Version,
|