@lvce-editor/shared-process 0.84.10 → 0.84.12
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.84.
|
|
3
|
+
"version": "0.84.12",
|
|
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.5.1",
|
|
21
21
|
"@lvce-editor/auth-process": "1.6.0",
|
|
22
|
-
"@lvce-editor/extension-host-helper-process": "0.84.
|
|
22
|
+
"@lvce-editor/extension-host-helper-process": "0.84.12",
|
|
23
23
|
"@lvce-editor/ipc": "16.0.0",
|
|
24
24
|
"@lvce-editor/json-rpc": "8.0.0",
|
|
25
25
|
"@lvce-editor/jsonc-parser": "1.5.0",
|
|
@@ -2,6 +2,6 @@ import { join } from 'path';
|
|
|
2
2
|
import { fileURLToPath } from 'url';
|
|
3
3
|
export const getBuiltinExtensionsPath = () => {
|
|
4
4
|
const staticServerPath = fileURLToPath(import.meta.resolve('@lvce-editor/static-server'));
|
|
5
|
-
const builtinExtensionsPath = join(staticServerPath, '..', '..', 'static', '
|
|
5
|
+
const builtinExtensionsPath = join(staticServerPath, '..', '..', 'static', 'e2d058c', 'extensions');
|
|
6
6
|
return builtinExtensionsPath;
|
|
7
7
|
};
|
|
@@ -11,6 +11,7 @@ export const Commands = {
|
|
|
11
11
|
getCacheUri: PlatformPaths.getCacheUri,
|
|
12
12
|
getCommit: Platform.getCommit,
|
|
13
13
|
getConfigDir: PlatformPaths.getConfigDir,
|
|
14
|
+
getConfigJsonPath: PlatformPaths.getConfigJsonPath,
|
|
14
15
|
getDataDir: PlatformPaths.getDataDir,
|
|
15
16
|
getDate: Platform.getDate,
|
|
16
17
|
getDisabledExtensionsPath: PlatformPaths.getDisabledExtensionsPath,
|
|
@@ -41,9 +41,9 @@ export const getAppImageName = () => {
|
|
|
41
41
|
export const getSetupName = () => {
|
|
42
42
|
return 'Lvce-Setup';
|
|
43
43
|
};
|
|
44
|
-
export const version = '0.84.
|
|
45
|
-
export const commit = '
|
|
46
|
-
export const date = '2026-06-
|
|
44
|
+
export const version = '0.84.12';
|
|
45
|
+
export const commit = 'e2d058c';
|
|
46
|
+
export const date = '2026-06-29T19:58:53.000Z';
|
|
47
47
|
export const getVersion = () => {
|
|
48
48
|
return version;
|
|
49
49
|
};
|
|
@@ -108,6 +108,9 @@ export const getCacheUri = () => {
|
|
|
108
108
|
export const getConfigDir = () => {
|
|
109
109
|
return configDir;
|
|
110
110
|
};
|
|
111
|
+
export const getConfigJsonPath = () => {
|
|
112
|
+
return import.meta.resolve('../../../../static/config.json');
|
|
113
|
+
};
|
|
111
114
|
export const getDataDir = () => {
|
|
112
115
|
return dataDir;
|
|
113
116
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { join } from 'node:path';
|
|
2
2
|
import * as Root from '../Root/Root.js';
|
|
3
3
|
export const getPreloadUrl = () => {
|
|
4
|
-
return join(Root.root, 'static', '
|
|
4
|
+
return join(Root.root, 'static', 'e2d058c', 'packages', 'preload', 'dist', 'index.js');
|
|
5
5
|
};
|