@lvce-editor/shared-process 0.15.0 → 0.15.1

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.15.0",
3
+ "version": "0.15.1",
4
4
  "description": "Utility package for @lvce-editor/server",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -17,9 +17,9 @@
17
17
  },
18
18
  "dependencies": {
19
19
  "@babel/code-frame": "^7.21.4",
20
- "@lvce-editor/extension-host": "0.15.0",
21
- "@lvce-editor/extension-host-helper-process": "0.15.0",
22
- "@lvce-editor/pty-host": "0.15.0",
20
+ "@lvce-editor/extension-host": "0.15.1",
21
+ "@lvce-editor/extension-host-helper-process": "0.15.1",
22
+ "@lvce-editor/pty-host": "0.15.1",
23
23
  "debug": "^4.3.4",
24
24
  "execa": "^7.1.1",
25
25
  "exit-hook": "^3.2.0",
@@ -14,9 +14,7 @@ export const downloadAndExtractTarGz = async ({ url, outDir, strip }) => {
14
14
  })
15
15
  )
16
16
  } catch (error) {
17
- // console.log({ error })
18
17
  if (error && error instanceof RequestError) {
19
- console.log('is req error')
20
18
  throw new VError(`Failed to download ${url}: ${error.message}`)
21
19
  }
22
20
  throw error
@@ -1,4 +1,4 @@
1
- import * as ExtensionHostIpcWithChildProcess from './ExtensionHostIpcWithChildProcess.js'
1
+ import * as ExtensionHostIpcWithChildProcess from '../ExtensionHostIpcWithChildProcess/ExtensionHostIpcWithChildProcess.js'
2
2
 
3
3
  export const create = () => {
4
4
  return ExtensionHostIpcWithChildProcess.create()