@lvce-editor/shared-process 0.103.3 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/shared-process",
3
- "version": "0.103.3",
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.3",
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",
@@ -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', 'ade084f', 'extensions')
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.3'
64
+ export const version = '0.103.4'
65
65
 
66
- export const commit = 'ade084f'
66
+ export const commit = 'a090a74'
67
67
 
68
- export const date = '2026-08-16T12:03:50.000Z'
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', 'ade084f', 'packages', 'preload', 'dist', 'index.js')
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,
@@ -70,3 +70,7 @@ export const getNodeVersion = () => {
70
70
  export const getArch = () => {
71
71
  return process.arch
72
72
  }
73
+
74
+ export const getArgv = () => {
75
+ return process.argv
76
+ }