@jupyterlab/lsp 4.6.0-beta.0 → 4.6.0-beta.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/lib/tokens.d.ts +2 -2
- package/package.json +10 -10
- package/src/tokens.ts +2 -2
package/lib/tokens.d.ts
CHANGED
|
@@ -11,10 +11,10 @@ import type { LanguageServer1 as LSPLanguageServerSettings } from './plugin';
|
|
|
11
11
|
import type * as SCHEMA from './schema';
|
|
12
12
|
import type { VirtualDocument } from './virtual/document';
|
|
13
13
|
import type { ILspConnection, ILspOptions } from './ws-connection/types';
|
|
14
|
-
import { IDocumentInfo } from './ws-connection/types';
|
|
14
|
+
import type { IDocumentInfo } from './ws-connection/types';
|
|
15
15
|
import type * as rpc from 'vscode-jsonrpc';
|
|
16
16
|
import type * as lsp from 'vscode-languageserver-protocol';
|
|
17
|
-
export { IDocumentInfo };
|
|
17
|
+
export type { IDocumentInfo };
|
|
18
18
|
/**
|
|
19
19
|
* Example server keys==ids that are expected. The list is not exhaustive.
|
|
20
20
|
* Custom server keys are allowed. Constraining the values helps avoid errors,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/lsp",
|
|
3
|
-
"version": "4.6.0-beta.
|
|
3
|
+
"version": "4.6.0-beta.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -41,24 +41,24 @@
|
|
|
41
41
|
"watch": "tsc -b --watch"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@jupyterlab/apputils": "^4.7.0-beta.
|
|
45
|
-
"@jupyterlab/codeeditor": "^4.6.0-beta.
|
|
46
|
-
"@jupyterlab/codemirror": "^4.6.0-beta.
|
|
47
|
-
"@jupyterlab/coreutils": "^6.6.0-beta.
|
|
48
|
-
"@jupyterlab/docregistry": "^4.6.0-beta.
|
|
49
|
-
"@jupyterlab/services": "^7.6.0-beta.
|
|
50
|
-
"@jupyterlab/translation": "^4.6.0-beta.
|
|
44
|
+
"@jupyterlab/apputils": "^4.7.0-beta.1",
|
|
45
|
+
"@jupyterlab/codeeditor": "^4.6.0-beta.1",
|
|
46
|
+
"@jupyterlab/codemirror": "^4.6.0-beta.1",
|
|
47
|
+
"@jupyterlab/coreutils": "^6.6.0-beta.1",
|
|
48
|
+
"@jupyterlab/docregistry": "^4.6.0-beta.1",
|
|
49
|
+
"@jupyterlab/services": "^7.6.0-beta.1",
|
|
50
|
+
"@jupyterlab/translation": "^4.6.0-beta.1",
|
|
51
51
|
"@lumino/coreutils": "^2.2.2",
|
|
52
52
|
"@lumino/disposable": "^2.1.5",
|
|
53
53
|
"@lumino/signaling": "^2.1.5",
|
|
54
|
-
"@lumino/widgets": "^2.
|
|
54
|
+
"@lumino/widgets": "^2.8.0",
|
|
55
55
|
"lodash.mergewith": "^4.6.1",
|
|
56
56
|
"vscode-jsonrpc": "^8.2.0",
|
|
57
57
|
"vscode-languageserver-protocol": "^3.17.0",
|
|
58
58
|
"vscode-ws-jsonrpc": "~1.0.2"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@jupyterlab/testing": "^4.6.0-beta.
|
|
61
|
+
"@jupyterlab/testing": "^4.6.0-beta.1",
|
|
62
62
|
"@types/jest": "^29.2.0",
|
|
63
63
|
"@types/lodash.mergewith": "^4.6.1",
|
|
64
64
|
"jest": "^29.2.0",
|
package/src/tokens.ts
CHANGED
|
@@ -22,12 +22,12 @@ import type { LanguageServer1 as LSPLanguageServerSettings } from './plugin';
|
|
|
22
22
|
import type * as SCHEMA from './schema';
|
|
23
23
|
import type { VirtualDocument } from './virtual/document';
|
|
24
24
|
import type { ILspConnection, ILspOptions } from './ws-connection/types';
|
|
25
|
-
import { IDocumentInfo } from './ws-connection/types';
|
|
25
|
+
import type { IDocumentInfo } from './ws-connection/types';
|
|
26
26
|
|
|
27
27
|
import type * as rpc from 'vscode-jsonrpc';
|
|
28
28
|
import type * as lsp from 'vscode-languageserver-protocol';
|
|
29
29
|
|
|
30
|
-
export { IDocumentInfo };
|
|
30
|
+
export type { IDocumentInfo };
|
|
31
31
|
|
|
32
32
|
/**
|
|
33
33
|
* Example server keys==ids that are expected. The list is not exhaustive.
|