@lvce-editor/shared-process 0.84.12 → 0.84.13
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.13",
|
|
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.13",
|
|
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', 'd9f5508', 'extensions');
|
|
6
6
|
return builtinExtensionsPath;
|
|
7
7
|
};
|
|
@@ -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.13';
|
|
45
|
+
export const commit = 'd9f5508';
|
|
46
|
+
export const date = '2026-06-30T12:45:27.000Z';
|
|
47
47
|
export const getVersion = () => {
|
|
48
48
|
return version;
|
|
49
49
|
};
|
|
@@ -109,7 +109,10 @@ export const getConfigDir = () => {
|
|
|
109
109
|
return configDir;
|
|
110
110
|
};
|
|
111
111
|
export const getConfigJsonPath = () => {
|
|
112
|
-
|
|
112
|
+
if (Platform.isProduction) {
|
|
113
|
+
return pathToFileURL(Path.join(Root.root, 'config.json')).toString();
|
|
114
|
+
}
|
|
115
|
+
return pathToFileURL(Path.join(Root.root, 'static', 'config.json')).toString();
|
|
113
116
|
};
|
|
114
117
|
export const getDataDir = () => {
|
|
115
118
|
return dataDir;
|
|
@@ -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', 'd9f5508', 'packages', 'preload', 'dist', 'index.js');
|
|
5
5
|
};
|
|
@@ -431,6 +431,15 @@
|
|
|
431
431
|
"settingName": "develop.problemsWorkerPath",
|
|
432
432
|
"hotReloadCommand": ""
|
|
433
433
|
},
|
|
434
|
+
{
|
|
435
|
+
"id": "processExplorer",
|
|
436
|
+
"fileName": "process-explorer-worker/index.js",
|
|
437
|
+
"contentSecurityPolicy": ["default-src 'none'"],
|
|
438
|
+
"defaultPath": "/packages/renderer-worker/node_modules/@lvce-editor/process-explorer-worker/index.js",
|
|
439
|
+
"productionPath": "/packages/process-explorer-worker/index.js",
|
|
440
|
+
"settingName": "develop.processExplorerWorkerPath",
|
|
441
|
+
"hotReloadCommand": "ProcessExplorer.hotReload"
|
|
442
|
+
},
|
|
434
443
|
{
|
|
435
444
|
"id": "quickPickWorker",
|
|
436
445
|
"fileName": "quickPickWorkerMain.js",
|