vscode-languageserver-protocol 3.17.3-next.5 → 3.17.3-next.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.
|
@@ -14,18 +14,18 @@ export interface ShowDocumentClientCapabilities {
|
|
|
14
14
|
support: boolean;
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
|
-
* Params to show a
|
|
17
|
+
* Params to show a resource in the UI.
|
|
18
18
|
*
|
|
19
19
|
* @since 3.16.0
|
|
20
20
|
*/
|
|
21
21
|
export interface ShowDocumentParams {
|
|
22
22
|
/**
|
|
23
|
-
* The
|
|
23
|
+
* The uri to show.
|
|
24
24
|
*/
|
|
25
25
|
uri: URI;
|
|
26
26
|
/**
|
|
27
27
|
* Indicates to show the resource in an external program.
|
|
28
|
-
* To show for example `https://code.visualstudio.com/`
|
|
28
|
+
* To show, for example, `https://code.visualstudio.com/`
|
|
29
29
|
* in the default WEB browser set `external` to `true`.
|
|
30
30
|
*/
|
|
31
31
|
external?: boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vscode-languageserver-protocol",
|
|
3
3
|
"description": "VSCode Language Server Protocol implementation",
|
|
4
|
-
"version": "3.17.3-next.
|
|
4
|
+
"version": "3.17.3-next.6",
|
|
5
5
|
"author": "Microsoft Corporation",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
},
|
|
19
19
|
"typings": "./lib/common/api.d.ts",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"vscode-jsonrpc": "8.1.0-next.
|
|
22
|
-
"vscode-languageserver-types": "3.17.3-next.
|
|
21
|
+
"vscode-jsonrpc": "8.1.0-next.7",
|
|
22
|
+
"vscode-languageserver-types": "3.17.3-next.3"
|
|
23
23
|
},
|
|
24
24
|
"scripts": {
|
|
25
25
|
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",
|