@lvce-editor/shared-process 0.51.1 → 0.51.3
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.51.
|
|
3
|
+
"version": "0.51.3",
|
|
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.3.0",
|
|
21
|
-
"@lvce-editor/extension-host-helper-process": "0.51.
|
|
21
|
+
"@lvce-editor/extension-host-helper-process": "0.51.3",
|
|
22
22
|
"@lvce-editor/ipc": "13.8.0",
|
|
23
23
|
"@lvce-editor/json-rpc": "5.4.0",
|
|
24
24
|
"@lvce-editor/jsonc-parser": "1.5.0",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
},
|
|
31
31
|
"optionalDependencies": {
|
|
32
32
|
"@lvce-editor/embeds-process": "2.0.0",
|
|
33
|
-
"@lvce-editor/file-watcher-process": "
|
|
33
|
+
"@lvce-editor/file-watcher-process": "3.0.0",
|
|
34
34
|
"@lvce-editor/network-process": "4.0.0",
|
|
35
|
-
"@lvce-editor/preload": "1.
|
|
35
|
+
"@lvce-editor/preload": "1.5.0",
|
|
36
36
|
"@lvce-editor/preview-process": "10.0.0",
|
|
37
37
|
"@lvce-editor/pty-host": "4.0.0",
|
|
38
38
|
"@lvce-editor/search-process": "7.0.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', 'c75acd3', 'extensions');
|
|
6
6
|
return builtinExtensionsPath;
|
|
7
7
|
};
|
|
@@ -387,6 +387,9 @@ const transpileFiles = async (folder) => {
|
|
|
387
387
|
const addTestFiles = async ({ testPath, commitHash, root, pathPrefix }) => {
|
|
388
388
|
const testRoot = isAbsolute(testPath) ? testPath : join(root, testPath);
|
|
389
389
|
await FileSystem.copy(`${testRoot}/src`, `${root}/dist/${commitHash}/packages/extension-host-worker-tests/src`);
|
|
390
|
+
if (existsSync(`${testRoot}/fixtures`)) {
|
|
391
|
+
await FileSystem.copy(`${testRoot}/fixtures`, `${root}/dist/${commitHash}/packages/extension-host-worker-tests/fixtures`);
|
|
392
|
+
}
|
|
390
393
|
const distDirentsPath = `${root}/dist/${commitHash}/packages/extension-host-worker-tests/src`;
|
|
391
394
|
await transpileFiles(distDirentsPath);
|
|
392
395
|
const testFilesRaw = await FileSystem.readDir(`${testRoot}/src`);
|
|
@@ -41,9 +41,9 @@ export const getAppImageName = () => {
|
|
|
41
41
|
export const getSetupName = () => {
|
|
42
42
|
return 'Lvce-Setup';
|
|
43
43
|
};
|
|
44
|
-
export const version = '0.51.
|
|
45
|
-
export const commit = '
|
|
46
|
-
export const date = '2025-05-
|
|
44
|
+
export const version = '0.51.3';
|
|
45
|
+
export const commit = 'c75acd3';
|
|
46
|
+
export const date = '2025-05-04T18:47:58.000Z';
|
|
47
47
|
export const getVersion = () => {
|
|
48
48
|
return version;
|
|
49
49
|
};
|