@lvce-editor/extension-host-helper-process 0.33.7 → 0.33.9
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/extension-host-helper-process",
|
|
3
|
-
"version": "0.33.
|
|
3
|
+
"version": "0.33.9",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -19,9 +19,7 @@
|
|
|
19
19
|
"@lvce-editor/assert": "^1.3.0",
|
|
20
20
|
"@lvce-editor/ipc": "^10.2.1",
|
|
21
21
|
"@lvce-editor/json-rpc": "^3.0.0",
|
|
22
|
-
"@lvce-editor/pretty-error": "^1.6.0",
|
|
23
22
|
"@lvce-editor/verror": "^1.4.0",
|
|
24
|
-
"@lvce-editor/web-socket-server": "^1.3.0",
|
|
25
23
|
"execa": "^9.3.1",
|
|
26
24
|
"got": "^14.4.2",
|
|
27
25
|
"minimist": "^1.2.8"
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import * as Callback from '../Callback/Callback.js'
|
|
2
2
|
import * as Command from '../Command/Command.js'
|
|
3
3
|
import * as JsonRpc from '../JsonRpc/JsonRpc.js'
|
|
4
|
-
import * as PrettyError from '../PrettyError/PrettyError.js'
|
|
5
|
-
import * as PrintPrettyError from '../PrintPrettyError/PrintPrettyError.js'
|
|
6
4
|
|
|
7
|
-
const preparePrettyError =
|
|
5
|
+
const preparePrettyError = (error) => {
|
|
6
|
+
return error
|
|
7
|
+
}
|
|
8
8
|
|
|
9
9
|
const logError = (error, prettyError) => {
|
|
10
|
-
|
|
10
|
+
// this is handled by shared process
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
const requiresSocket = () => {
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { prepare, prepareJsonError } from '@lvce-editor/pretty-error'
|