@lvce-editor/shared-process 0.44.7 → 0.44.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.44.7",
3
+ "version": "0.44.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.44.7",
21
+ "@lvce-editor/extension-host-helper-process": "0.44.8",
22
22
  "@lvce-editor/ipc": "13.7.0",
23
23
  "@lvce-editor/json-rpc": "5.4.0",
24
24
  "@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', '824bfc9', 'extensions');
5
+ const builtinExtensionsPath = join(staticServerPath, '..', '..', 'static', '0645499', 'extensions');
6
6
  return builtinExtensionsPath;
7
7
  };
@@ -266,6 +266,9 @@ const updateExtensionsJson = async ({ root, commitHash, pathPrefix, extraExtensi
266
266
  path: webExtensionPath,
267
267
  };
268
268
  }));
269
+ for (const extension of extraExtensions) {
270
+ extension.path = `${pathPrefix}/${commitHash}/extensions/${extension.id}`;
271
+ }
269
272
  const newExtensions = [...manifests, ...extraExtensions];
270
273
  await JsonFile.writeJson(Path.join(root, 'dist', commitHash, 'config', 'extensions.json'), newExtensions);
271
274
  };
@@ -41,9 +41,9 @@ export const getAppImageName = () => {
41
41
  export const getSetupName = () => {
42
42
  return 'Lvce-Setup';
43
43
  };
44
- export const version = '0.44.7';
45
- export const commit = '824bfc9';
46
- export const date = '2025-01-12T17:44:09.000Z';
44
+ export const version = '0.44.8';
45
+ export const commit = '0645499';
46
+ export const date = '2025-01-16T19:58:21.000Z';
47
47
  export const getVersion = () => {
48
48
  return version;
49
49
  };