@lvce-editor/shared-process 0.37.6 → 0.37.8
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.37.
|
|
3
|
+
"version": "0.37.8",
|
|
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.37.
|
|
21
|
+
"@lvce-editor/extension-host-helper-process": "0.37.8",
|
|
22
22
|
"@lvce-editor/ipc": "^11.0.1",
|
|
23
23
|
"@lvce-editor/json-rpc": "^4.2.0",
|
|
24
24
|
"@lvce-editor/jsonc-parser": "^1.5.0",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@lvce-editor/preview-process": "^3.9.0",
|
|
36
36
|
"@lvce-editor/pty-host": "^2.1.0",
|
|
37
37
|
"@lvce-editor/search-process": "^3.2.0",
|
|
38
|
-
"@lvce-editor/typescript-compile-process": "^1.
|
|
38
|
+
"@lvce-editor/typescript-compile-process": "^1.5.0",
|
|
39
39
|
"open": "^10.1.0",
|
|
40
40
|
"tail": "^2.2.6",
|
|
41
41
|
"tmp-promise": "^3.0.3",
|
|
@@ -100,6 +100,7 @@ const applyOverrides = async ({ root, commitHash, pathPrefix, serverStaticPath }
|
|
|
100
100
|
await replace(Path.join(root, 'dist', commitHash, 'packages', 'extension-host-worker', 'dist', 'extensionHostWorkerMain.js'), `const platform = Remote`, `const platform = Web`);
|
|
101
101
|
await replace(Path.join(root, 'dist', commitHash, 'packages', 'iframe-worker', 'dist', 'iframeWorkerMain.js'), `const platform = Remote`, `const platform = Web`);
|
|
102
102
|
await replace(Path.join(root, 'dist', commitHash, 'packages', 'iframe-worker', 'dist', 'iframeWorkerMain.js'), `/${commitHash}`, `${pathPrefix}/${commitHash}`);
|
|
103
|
+
await replace(Path.join(root, 'dist', commitHash, 'packages', 'file-search-worker', 'dist', 'fileSearchWorkerMain.js'), `/${commitHash}`, `${pathPrefix}/${commitHash}`);
|
|
103
104
|
await replace(Path.join(root, 'dist', commitHash, 'packages', 'renderer-worker', 'dist', 'rendererWorkerMain.js'), `return \`\${assetDir}/extensions/builtin.\${iconThemeId}/icon-theme.json\``, `return \`\${assetDir}/icon-themes/\${iconThemeId}.json\``);
|
|
104
105
|
const extensionDirents = await FileSystem.readDir(Path.join(serverStaticPath, commitHash, 'extensions'));
|
|
105
106
|
const languageBasicsDirents = extensionDirents.filter(isLanguageBasics);
|
|
@@ -41,9 +41,9 @@ export const getAppImageName = () => {
|
|
|
41
41
|
export const getSetupName = () => {
|
|
42
42
|
return 'Lvce-Setup';
|
|
43
43
|
};
|
|
44
|
-
export const version = '0.37.
|
|
45
|
-
export const commit = '
|
|
46
|
-
export const date = '2024-10-
|
|
44
|
+
export const version = '0.37.8';
|
|
45
|
+
export const commit = '6c07072';
|
|
46
|
+
export const date = '2024-10-30T23:51:19.000Z';
|
|
47
47
|
export const getVersion = () => {
|
|
48
48
|
return version;
|
|
49
49
|
};
|