@lvce-editor/shared-process 0.101.5 → 0.101.6
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.101.
|
|
3
|
+
"version": "0.101.6",
|
|
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.9.0",
|
|
21
|
-
"@lvce-editor/extension-host-helper-process": "0.101.
|
|
21
|
+
"@lvce-editor/extension-host-helper-process": "0.101.6",
|
|
22
22
|
"@lvce-editor/ipc": "16.11.0",
|
|
23
23
|
"@lvce-editor/json-rpc": "8.6.0",
|
|
24
24
|
"@lvce-editor/jsonc-parser": "1.5.0",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"@lvce-editor/pty-host": "8.7.0",
|
|
41
41
|
"@lvce-editor/search-process": "15.8.0",
|
|
42
42
|
"@lvce-editor/typescript-compile-process": "5.9.0",
|
|
43
|
-
"open": "^11.0.
|
|
43
|
+
"open": "^11.0.1",
|
|
44
44
|
"tail": "^2.2.6",
|
|
45
45
|
"tmp-promise": "^3.0.3",
|
|
46
46
|
"trash": "^10.1.1"
|
|
@@ -3,6 +3,6 @@ import { fileURLToPath } from 'url'
|
|
|
3
3
|
|
|
4
4
|
export const getBuiltinExtensionsPath = () => {
|
|
5
5
|
const staticServerPath = fileURLToPath(import.meta.resolve('@lvce-editor/static-server'))
|
|
6
|
-
const builtinExtensionsPath = join(staticServerPath, '..', '..', 'static', '
|
|
6
|
+
const builtinExtensionsPath = join(staticServerPath, '..', '..', 'static', 'df97fe6', 'extensions')
|
|
7
7
|
return builtinExtensionsPath
|
|
8
8
|
}
|
|
@@ -380,6 +380,13 @@ export class LanguageServerConnection {
|
|
|
380
380
|
const result = (await this.sendRequest('initialize', {
|
|
381
381
|
capabilities: {
|
|
382
382
|
textDocument: {
|
|
383
|
+
codeAction: {
|
|
384
|
+
codeActionLiteralSupport: {
|
|
385
|
+
codeActionKind: {
|
|
386
|
+
valueSet: ['', 'quickfix', 'refactor', 'refactor.extract', 'refactor.inline', 'refactor.rewrite', 'source', 'source.organizeImports'],
|
|
387
|
+
},
|
|
388
|
+
},
|
|
389
|
+
},
|
|
383
390
|
completion: {
|
|
384
391
|
completionItem: {
|
|
385
392
|
snippetSupport: true,
|
|
@@ -61,11 +61,11 @@ export const getSetupName = () => {
|
|
|
61
61
|
return 'Lvce-Setup'
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
-
export const version = '0.101.
|
|
64
|
+
export const version = '0.101.6'
|
|
65
65
|
|
|
66
|
-
export const commit = '
|
|
66
|
+
export const commit = 'df97fe6'
|
|
67
67
|
|
|
68
|
-
export const date = '2026-08-
|
|
68
|
+
export const date = '2026-08-15T07:37:20.000Z'
|
|
69
69
|
|
|
70
70
|
export const getVersion = () => {
|
|
71
71
|
return version
|
|
@@ -2,5 +2,5 @@ import { join } from 'node:path'
|
|
|
2
2
|
import * as Root from '../Root/Root.js'
|
|
3
3
|
|
|
4
4
|
export const getPreloadUrl = () => {
|
|
5
|
-
return join(Root.root, 'static', '
|
|
5
|
+
return join(Root.root, 'static', 'df97fe6', 'packages', 'preload', 'dist', 'index.js')
|
|
6
6
|
}
|