@lvce-editor/shared-process 0.0.25 → 0.0.26

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.0.25",
3
+ "version": "0.0.26",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -31,8 +31,8 @@
31
31
  "verror": "^1.10.1",
32
32
  "ws": "^8.8.0",
33
33
  "xdg-basedir": "^5.1.0",
34
- "@lvce-editor/pty-host": "0.0.25",
35
- "@lvce-editor/extension-host": "0.0.25"
34
+ "@lvce-editor/pty-host": "0.0.26",
35
+ "@lvce-editor/extension-host": "0.0.26"
36
36
  },
37
37
  "optionalDependencies": {
38
38
  "electron-clipboard-ex": "^1.3.3",
@@ -46,10 +46,8 @@ const handleMessageFromParentProcess = async (message, handle) => {
46
46
  } else if (message.result) {
47
47
  Callback.resolve(message.id, message.result)
48
48
  } else if (message.method) {
49
- console.log({ message })
50
49
  if (message.id) {
51
50
  try {
52
- console.log('INISDE HERE')
53
51
  const result = requiresSocket(message.method)
54
52
  ? await Command.invoke(message.method, handle, ...message.params)
55
53
  : await Command.invoke(message.method, ...message.params)
@@ -179,7 +177,6 @@ const handleMessageFromParentProcessElectron = async (message) => {
179
177
  electronInitialize(message)
180
178
  return
181
179
  }
182
- console.log({ message })
183
180
  if ('result' in message) {
184
181
  Callback.resolve(message.id, message.result)
185
182
  return