vscode-languageserver-protocol
Advanced tools
Comparing version 3.15.0-next.8 to 3.15.0-next.9
@@ -26,5 +26,5 @@ import { ErrorCodes, ResponseError, CancellationToken, CancellationTokenSource, Disposable, Event, Emitter, Trace, Tracer, TraceFormat, TraceOptions, SetTraceNotification, LogTraceNotification, Message, NotificationMessage, RequestMessage, MessageType as RPCMessageType, RequestType, RequestType0, RequestHandler, RequestHandler0, GenericRequestHandler, StarRequestHandler, HandlerResult, NotificationType, NotificationType0, NotificationHandler, NotificationHandler0, GenericNotificationHandler, StarNotificationHandler, MessageReader, MessageWriter, Logger, ConnectionStrategy, StreamMessageReader, StreamMessageWriter, IPCMessageReader, IPCMessageWriter, createClientPipeTransport, createServerPipeTransport, generateRandomPipeName, DataCallback, createClientSocketTransport, createServerSocketTransport, ProgressType, ProgressToken } from 'vscode-jsonrpc'; | ||
type WorkDoneProgressReport = progress.WorkDoneProgressReport; | ||
type WorkDoneProgressDone = progress.WorkDoneProgressDone; | ||
type WorkDoneProgressEnd = progress.WorkDoneProgressEnd; | ||
namespace WorkDoneProgress { | ||
const type: ProgressType<progress.WorkDoneProgressBegin | progress.WorkDoneProgressReport | progress.WorkDoneProgressDone>; | ||
const type: ProgressType<progress.WorkDoneProgressBegin | progress.WorkDoneProgressReport | progress.WorkDoneProgressEnd>; | ||
} | ||
@@ -31,0 +31,0 @@ type WorkDoneProgressCreateParams = progress.WorkDoneProgressCreateParams; |
import { RequestType, RequestHandler, ProgressType } from 'vscode-jsonrpc'; | ||
import { TextDocumentRegistrationOptions, StaticRegistrationOptions, PartialResultParams, WorkDoneProgressParams, WorkDoneProgressOptions } from './protocol'; | ||
import { TextDocumentIdentifier, Range, Color, ColorInformation, ColorPresentation } from 'vscode-languageserver-types'; | ||
export interface ColorClientCapabilities { | ||
export interface DocumentColorClientCapabilities { | ||
/** | ||
* The text document client capabilities | ||
* Whether implementation supports dynamic registration. If this is set to `true` | ||
* the client supports the new `DocumentColorRegistrationOptions` return value | ||
* for the corresponding server capability as well. | ||
*/ | ||
textDocument?: { | ||
/** | ||
* Capabilities specific to the colorProvider | ||
*/ | ||
colorProvider?: { | ||
/** | ||
* Whether implementation supports dynamic registration. If this is set to `true` | ||
* the client supports the new `(ColorRegistrationOptions & StaticRegistrationOptions)` | ||
* return value for the corresponding server capability as well. | ||
*/ | ||
dynamicRegistration?: boolean; | ||
}; | ||
}; | ||
dynamicRegistration?: boolean; | ||
} | ||
export interface ColorOptions extends WorkDoneProgressOptions { | ||
} | ||
export interface ColorRegistrationOptions extends TextDocumentRegistrationOptions, ColorOptions { | ||
} | ||
export interface ColorServerCapabilities { | ||
export interface DocumentColorOptions extends WorkDoneProgressOptions { | ||
/** | ||
* The server provides color provider support. | ||
* Code lens has a resolve provider as well. | ||
*/ | ||
colorProvider?: boolean | ColorOptions | (ColorRegistrationOptions & StaticRegistrationOptions); | ||
resolveProvider?: boolean; | ||
} | ||
export interface DocumentColorRegistrationOptions extends TextDocumentRegistrationOptions, StaticRegistrationOptions, DocumentColorOptions { | ||
} | ||
/** | ||
@@ -48,3 +36,3 @@ * Parameters for a [DocumentColorRequest](#DocumentColorRequest). | ||
export declare namespace DocumentColorRequest { | ||
const type: RequestType<DocumentColorParams, ColorInformation[], void, ColorRegistrationOptions>; | ||
const type: RequestType<DocumentColorParams, ColorInformation[], void, DocumentColorRegistrationOptions>; | ||
const resultType: ProgressType<ColorInformation[]>; | ||
@@ -51,0 +39,0 @@ type HandlerSignature = RequestHandler<DocumentColorParams, ColorInformation[], void>; |
import { RequestType, RequestHandler, ProgressType } from 'vscode-jsonrpc'; | ||
import { Declaration, DeclarationLink, Location, LocationLink } from 'vscode-languageserver-types'; | ||
import { TextDocumentRegistrationOptions, StaticRegistrationOptions, TextDocumentPositionParams, PartialResultParams, WorkDoneProgressParams, WorkDoneProgressOptions } from './protocol'; | ||
/** | ||
* Since 3.14.0 | ||
*/ | ||
export interface DeclarationClientCapabilities { | ||
/** | ||
* The text document client capabilities | ||
* Whether declaration supports dynamic registration. If this is set to `true` | ||
* the client supports the new `DeclarationRegistrationOptions` return value | ||
* for the corresponding server capability as well. | ||
*/ | ||
textDocument?: { | ||
/** | ||
* Capabilities specific to the `textDocument/declaration` | ||
*/ | ||
declaration?: { | ||
/** | ||
* Whether declaration supports dynamic registration. If this is set to `true` | ||
* the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)` | ||
* return value for the corresponding server capability as well. | ||
*/ | ||
dynamicRegistration?: boolean; | ||
/** | ||
* The client supports additional metadata in the form of declaration links. | ||
*/ | ||
linkSupport?: boolean; | ||
}; | ||
}; | ||
dynamicRegistration?: boolean; | ||
/** | ||
* The client supports additional metadata in the form of declaration links. | ||
*/ | ||
linkSupport?: boolean; | ||
} | ||
export interface DeclarationOptions extends WorkDoneProgressOptions { | ||
} | ||
export interface DeclarationRegistrationOptions extends TextDocumentRegistrationOptions, DeclarationOptions { | ||
export interface DeclarationRegistrationOptions extends DeclarationOptions, TextDocumentRegistrationOptions, StaticRegistrationOptions { | ||
} | ||
export interface DeclarationServerCapabilities { | ||
/** | ||
* The server provides Goto Type Definition support. | ||
*/ | ||
declarationProvider?: boolean | DeclarationOptions | (DeclarationRegistrationOptions & StaticRegistrationOptions); | ||
} | ||
export interface DeclarationParams extends TextDocumentPositionParams, WorkDoneProgressParams, PartialResultParams { | ||
@@ -37,0 +24,0 @@ } |
@@ -6,38 +6,22 @@ import { RequestType, RequestHandler, ProgressType } from 'vscode-jsonrpc'; | ||
/** | ||
* The text document client capabilities | ||
* Whether implementation supports dynamic registration for folding range providers. If this is set to `true` | ||
* the client supports the new `FoldingRangeRegistrationOptions` return value for the corresponding server | ||
* capability as well. | ||
*/ | ||
textDocument?: { | ||
/** | ||
* Capabilities specific to `textDocument/foldingRange` requests | ||
*/ | ||
foldingRange?: { | ||
/** | ||
* Whether implementation supports dynamic registration for folding range providers. If this is set to `true` | ||
* the client supports the new `(FoldingRangeProviderOptions & TextDocumentRegistrationOptions & StaticRegistrationOptions)` | ||
* return value for the corresponding server capability as well. | ||
*/ | ||
dynamicRegistration?: boolean; | ||
/** | ||
* The maximum number of folding ranges that the client prefers to receive per document. The value serves as a | ||
* hint, servers are free to follow the limit. | ||
*/ | ||
rangeLimit?: number; | ||
/** | ||
* If set, the client signals that it only supports folding complete lines. If set, client will | ||
* ignore specified `startCharacter` and `endCharacter` properties in a FoldingRange. | ||
*/ | ||
lineFoldingOnly?: boolean; | ||
}; | ||
}; | ||
dynamicRegistration?: boolean; | ||
/** | ||
* The maximum number of folding ranges that the client prefers to receive per document. The value serves as a | ||
* hint, servers are free to follow the limit. | ||
*/ | ||
rangeLimit?: number; | ||
/** | ||
* If set, the client signals that it only supports folding complete lines. If set, client will | ||
* ignore specified `startCharacter` and `endCharacter` properties in a FoldingRange. | ||
*/ | ||
lineFoldingOnly?: boolean; | ||
} | ||
export interface FoldingRangeOptions extends WorkDoneProgressOptions { | ||
} | ||
export interface FoldingRangeRegistrationOptions extends TextDocumentRegistrationOptions, FoldingRangeOptions { | ||
export interface FoldingRangeRegistrationOptions extends TextDocumentRegistrationOptions, FoldingRangeOptions, StaticRegistrationOptions { | ||
} | ||
export interface FoldingRangeServerCapabilities { | ||
/** | ||
* The server provides folding provider support. | ||
*/ | ||
foldingRangeProvider?: boolean | FoldingRangeOptions | (FoldingRangeRegistrationOptions & StaticRegistrationOptions); | ||
} | ||
/** | ||
@@ -44,0 +28,0 @@ * Enum of known range kinds |
import { RequestType, RequestHandler, ProgressType } from 'vscode-jsonrpc'; | ||
import { Definition, DefinitionLink, Location, LocationLink } from 'vscode-languageserver-types'; | ||
import { TextDocumentRegistrationOptions, StaticRegistrationOptions, TextDocumentPositionParams, PartialResultParams, WorkDoneProgressParams, WorkDoneProgressOptions } from './protocol'; | ||
/** | ||
* Since 3.6.0 | ||
*/ | ||
export interface ImplementationClientCapabilities { | ||
/** | ||
* The text document client capabilities | ||
* Whether implementation supports dynamic registration. If this is set to `true` | ||
* the client supports the new `ImplementationRegistrationOptions` return value | ||
* for the corresponding server capability as well. | ||
*/ | ||
textDocument?: { | ||
/** | ||
* Capabilities specific to the `textDocument/implementation` | ||
*/ | ||
implementation?: { | ||
/** | ||
* Whether implementation supports dynamic registration. If this is set to `true` | ||
* the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)` | ||
* return value for the corresponding server capability as well. | ||
*/ | ||
dynamicRegistration?: boolean; | ||
/** | ||
* The client supports additional metadata in the form of definition links. | ||
*/ | ||
linkSupport?: boolean; | ||
}; | ||
}; | ||
dynamicRegistration?: boolean; | ||
/** | ||
* The client supports additional metadata in the form of definition links. | ||
* | ||
* Since 3.14.0 | ||
*/ | ||
linkSupport?: boolean; | ||
} | ||
export interface ImplementationOptions extends WorkDoneProgressOptions { | ||
} | ||
export interface ImplementationRegistrationOptions extends TextDocumentRegistrationOptions, ImplementationOptions { | ||
export interface ImplementationRegistrationOptions extends TextDocumentRegistrationOptions, ImplementationOptions, StaticRegistrationOptions { | ||
} | ||
export interface ImplementationServerCapabilities { | ||
/** | ||
* The server provides Goto Implementation support. | ||
*/ | ||
implementationProvider?: boolean | ImplementationOptions | (ImplementationRegistrationOptions & StaticRegistrationOptions); | ||
} | ||
export interface ImplementationParams extends TextDocumentPositionParams, WorkDoneProgressParams, PartialResultParams { | ||
@@ -37,0 +26,0 @@ } |
@@ -116,24 +116,2 @@ /* -------------------------------------------------------------------------------------------- | ||
/** | ||
* Defines how the host (editor) should sync | ||
* document changes to the language server. | ||
*/ | ||
var TextDocumentSyncKind; | ||
(function (TextDocumentSyncKind) { | ||
/** | ||
* Documents should not be synced at all. | ||
*/ | ||
TextDocumentSyncKind.None = 0; | ||
/** | ||
* Documents are synced by always sending the full content | ||
* of the document. | ||
*/ | ||
TextDocumentSyncKind.Full = 1; | ||
/** | ||
* Documents are synced by sending the full content on open. | ||
* After that only incremental updates to the document are | ||
* send. | ||
*/ | ||
TextDocumentSyncKind.Incremental = 2; | ||
})(TextDocumentSyncKind = exports.TextDocumentSyncKind || (exports.TextDocumentSyncKind = {})); | ||
/** | ||
* The StaticRegistrationOptions namespace provides helper functions to work with | ||
@@ -231,3 +209,2 @@ * [StaticRegistrationOptions](#StaticRegistrationOptions) literals. | ||
})(ExitNotification = exports.ExitNotification || (exports.ExitNotification = {})); | ||
//---- Configuration notification ---- | ||
/** | ||
@@ -299,2 +276,24 @@ * The configuration change notification is sent from the client to the server | ||
/** | ||
* Defines how the host (editor) should sync | ||
* document changes to the language server. | ||
*/ | ||
var TextDocumentSyncKind; | ||
(function (TextDocumentSyncKind) { | ||
/** | ||
* Documents should not be synced at all. | ||
*/ | ||
TextDocumentSyncKind.None = 0; | ||
/** | ||
* Documents are synced by always sending the full content | ||
* of the document. | ||
*/ | ||
TextDocumentSyncKind.Full = 1; | ||
/** | ||
* Documents are synced by sending the full content on open. | ||
* After that only incremental updates to the document are | ||
* send. | ||
*/ | ||
TextDocumentSyncKind.Incremental = 2; | ||
})(TextDocumentSyncKind = exports.TextDocumentSyncKind || (exports.TextDocumentSyncKind = {})); | ||
/** | ||
* The document open notification is sent from the client to the server to signal | ||
@@ -362,3 +361,2 @@ * newly opened text documents. The document's truth is now managed by the client | ||
})(WillSaveTextDocumentWaitUntilRequest = exports.WillSaveTextDocumentWaitUntilRequest || (exports.WillSaveTextDocumentWaitUntilRequest = {})); | ||
//---- File eventing ---- | ||
/** | ||
@@ -405,3 +403,2 @@ * The watched files notification is sent from the client to the server when | ||
})(WatchKind = exports.WatchKind || (exports.WatchKind = {})); | ||
//---- Diagnostic notification ---- | ||
/** | ||
@@ -415,3 +412,2 @@ * Diagnostics notification are sent from the server to the client to signal | ||
})(PublishDiagnosticsNotification = exports.PublishDiagnosticsNotification || (exports.PublishDiagnosticsNotification = {})); | ||
//---- Completion Support -------------------------- | ||
/** | ||
@@ -471,2 +467,22 @@ * How a completion was triggered | ||
})(HoverRequest = exports.HoverRequest || (exports.HoverRequest = {})); | ||
/** | ||
* How a signature help was triggered. | ||
* | ||
* @since 3.15.0 | ||
*/ | ||
var SignatureHelpTriggerKind; | ||
(function (SignatureHelpTriggerKind) { | ||
/** | ||
* Signature help was invoked manually by the user or by a command. | ||
*/ | ||
SignatureHelpTriggerKind.Invoked = 1; | ||
/** | ||
* Signature help was triggered by a trigger character. | ||
*/ | ||
SignatureHelpTriggerKind.TriggerCharacter = 2; | ||
/** | ||
* Signature help was triggered by the cursor moving or by the document content changing. | ||
*/ | ||
SignatureHelpTriggerKind.ContentChange = 3; | ||
})(SignatureHelpTriggerKind = exports.SignatureHelpTriggerKind || (exports.SignatureHelpTriggerKind = {})); | ||
var SignatureHelpRequest; | ||
@@ -522,2 +538,10 @@ (function (SignatureHelpRequest) { | ||
/** | ||
* A request to provide commands for the given text document and range. | ||
*/ | ||
var CodeActionRequest; | ||
(function (CodeActionRequest) { | ||
CodeActionRequest.type = new vscode_jsonrpc_1.RequestType('textDocument/codeAction'); | ||
CodeActionRequest.resultType = new vscode_jsonrpc_1.ProgressType(); | ||
})(CodeActionRequest = exports.CodeActionRequest || (exports.CodeActionRequest = {})); | ||
/** | ||
* A request to list project-wide symbols matching the query string given | ||
@@ -534,10 +558,2 @@ * by the [WorkspaceSymbolParams](#WorkspaceSymbolParams). The response is | ||
/** | ||
* A request to provide commands for the given text document and range. | ||
*/ | ||
var CodeActionRequest; | ||
(function (CodeActionRequest) { | ||
CodeActionRequest.type = new vscode_jsonrpc_1.RequestType('textDocument/codeAction'); | ||
CodeActionRequest.resultType = new vscode_jsonrpc_1.ProgressType(); | ||
})(CodeActionRequest = exports.CodeActionRequest || (exports.CodeActionRequest = {})); | ||
/** | ||
* A request to provide code lens for the given text document. | ||
@@ -558,2 +574,19 @@ */ | ||
/** | ||
* A request to provide document links | ||
*/ | ||
var DocumentLinkRequest; | ||
(function (DocumentLinkRequest) { | ||
DocumentLinkRequest.type = new vscode_jsonrpc_1.RequestType('textDocument/documentLink'); | ||
DocumentLinkRequest.resultType = new vscode_jsonrpc_1.ProgressType(); | ||
})(DocumentLinkRequest = exports.DocumentLinkRequest || (exports.DocumentLinkRequest = {})); | ||
/** | ||
* Request to resolve additional information for a given document link. The request's | ||
* parameter is of type [DocumentLink](#DocumentLink) the response | ||
* is of type [DocumentLink](#DocumentLink) or a Thenable that resolves to such. | ||
*/ | ||
var DocumentLinkResolveRequest; | ||
(function (DocumentLinkResolveRequest) { | ||
DocumentLinkResolveRequest.type = new vscode_jsonrpc_1.RequestType('documentLink/resolve'); | ||
})(DocumentLinkResolveRequest = exports.DocumentLinkResolveRequest || (exports.DocumentLinkResolveRequest = {})); | ||
/** | ||
* A request to to format a whole document. | ||
@@ -594,19 +627,2 @@ */ | ||
/** | ||
* A request to provide document links | ||
*/ | ||
var DocumentLinkRequest; | ||
(function (DocumentLinkRequest) { | ||
DocumentLinkRequest.type = new vscode_jsonrpc_1.RequestType('textDocument/documentLink'); | ||
DocumentLinkRequest.resultType = new vscode_jsonrpc_1.ProgressType(); | ||
})(DocumentLinkRequest = exports.DocumentLinkRequest || (exports.DocumentLinkRequest = {})); | ||
/** | ||
* Request to resolve additional information for a given document link. The request's | ||
* parameter is of type [DocumentLink](#DocumentLink) the response | ||
* is of type [DocumentLink](#DocumentLink) or a Thenable that resolves to such. | ||
*/ | ||
var DocumentLinkResolveRequest; | ||
(function (DocumentLinkResolveRequest) { | ||
DocumentLinkResolveRequest.type = new vscode_jsonrpc_1.RequestType('documentLink/resolve'); | ||
})(DocumentLinkResolveRequest = exports.DocumentLinkResolveRequest || (exports.DocumentLinkResolveRequest = {})); | ||
/** | ||
* A request send from the client to the server to execute a command. The request might return | ||
@@ -613,0 +629,0 @@ * a workspace edit which the client will apply to the workspace. |
@@ -8,3 +8,6 @@ import { NotificationType, NotificationHandler, RequestType, RequestHandler, ProgressType, ProgressToken } from 'vscode-jsonrpc'; | ||
/** | ||
* Whether client supports handling progress notifications. | ||
* Whether client supports handling progress notifications. If set servers are allowed to | ||
* report in `workDoneProgress` property in the request specific server capabilities. | ||
* | ||
* Since 3.15.0 | ||
*/ | ||
@@ -75,4 +78,4 @@ workDoneProgress?: boolean; | ||
} | ||
export interface WorkDoneProgressDone { | ||
kind: 'done'; | ||
export interface WorkDoneProgressEnd { | ||
kind: 'end'; | ||
/** | ||
@@ -85,3 +88,3 @@ * Optional, a final message indicating to for example indicate the outcome | ||
export declare namespace WorkDoneProgress { | ||
const type: ProgressType<WorkDoneProgressBegin | WorkDoneProgressReport | WorkDoneProgressDone>; | ||
const type: ProgressType<WorkDoneProgressBegin | WorkDoneProgressReport | WorkDoneProgressEnd>; | ||
} | ||
@@ -88,0 +91,0 @@ export interface WorkDoneProgressCreateParams { |
@@ -6,28 +6,12 @@ import { RequestType, RequestHandler, ProgressType } from 'vscode-jsonrpc'; | ||
/** | ||
* The text document client capabilities | ||
* Whether implementation supports dynamic registration for selection range providers. If this is set to `true` | ||
* the client supports the new `SelectionRangeRegistrationOptions` return value for the corresponding server | ||
* capability as well. | ||
*/ | ||
textDocument?: { | ||
/** | ||
* Capabilities specific to `textDocument/selectionRange` requests | ||
*/ | ||
selectionRange?: { | ||
/** | ||
* Whether implementation supports dynamic registration for selection range providers. If this is set to `true` | ||
* the client supports the new `(SelectionRangeProviderOptions & TextDocumentRegistrationOptions & StaticRegistrationOptions)` | ||
* return value for the corresponding server capability as well. | ||
*/ | ||
dynamicRegistration?: boolean; | ||
}; | ||
}; | ||
dynamicRegistration?: boolean; | ||
} | ||
export interface SelectionRangeOptions extends WorkDoneProgressOptions { | ||
} | ||
export interface SelectionRangeRegistrationOptions extends SelectionRangeOptions, TextDocumentRegistrationOptions { | ||
export interface SelectionRangeRegistrationOptions extends SelectionRangeOptions, TextDocumentRegistrationOptions, StaticRegistrationOptions { | ||
} | ||
export interface SelectionRangeServerCapabilities { | ||
/** | ||
* The server provides selection range support. | ||
*/ | ||
selectionRangeProvider?: boolean | SelectionRangeOptions | (SelectionRangeRegistrationOptions & StaticRegistrationOptions); | ||
} | ||
/** | ||
@@ -34,0 +18,0 @@ * A parameter literal used in selection range requests. |
import { RequestType, RequestHandler, ProgressType } from 'vscode-jsonrpc'; | ||
import { Definition, DefinitionLink, LocationLink, Location } from 'vscode-languageserver-types'; | ||
import { TextDocumentRegistrationOptions, StaticRegistrationOptions, TextDocumentPositionParams, PartialResultParams, WorkDoneProgressParams, WorkDoneProgressOptions } from './protocol'; | ||
/** | ||
* Since 3.6.0 | ||
*/ | ||
export interface TypeDefinitionClientCapabilities { | ||
/** | ||
* The text document client capabilities | ||
* Whether implementation supports dynamic registration. If this is set to `true` | ||
* the client supports the new `TypeDefinitionRegistrationOptions` return value | ||
* for the corresponding server capability as well. | ||
*/ | ||
textDocument?: { | ||
/** | ||
* Capabilities specific to the `textDocument/typeDefinition` | ||
*/ | ||
typeDefinition?: { | ||
/** | ||
* Whether implementation supports dynamic registration. If this is set to `true` | ||
* the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)` | ||
* return value for the corresponding server capability as well. | ||
*/ | ||
dynamicRegistration?: boolean; | ||
/** | ||
* The client supports additional metadata in the form of definition links. | ||
*/ | ||
linkSupport?: boolean; | ||
}; | ||
}; | ||
dynamicRegistration?: boolean; | ||
/** | ||
* The client supports additional metadata in the form of definition links. | ||
* | ||
* Since 3.14.0 | ||
*/ | ||
linkSupport?: boolean; | ||
} | ||
export interface TypeDefinitionOptions extends WorkDoneProgressOptions { | ||
} | ||
export interface TypeDefinitionRegistrationOptions extends TextDocumentRegistrationOptions, TypeDefinitionOptions { | ||
export interface TypeDefinitionRegistrationOptions extends TextDocumentRegistrationOptions, TypeDefinitionOptions, StaticRegistrationOptions { | ||
} | ||
export interface TypeDefinitionServerCapabilities { | ||
/** | ||
* The server provides Goto Type Definition support. | ||
*/ | ||
typeDefinitionProvider?: boolean | TypeDefinitionOptions | (TypeDefinitionRegistrationOptions & StaticRegistrationOptions); | ||
} | ||
export interface TypeDefinitionParams extends TextDocumentPositionParams, WorkDoneProgressParams, PartialResultParams { | ||
@@ -37,0 +26,0 @@ } |
{ | ||
"name": "vscode-languageserver-protocol", | ||
"description": "VSCode Language Server Protocol implementation", | ||
"version": "3.15.0-next.8", | ||
"version": "3.15.0-next.9", | ||
"author": "Microsoft Corporation", | ||
@@ -18,4 +18,4 @@ "license": "MIT", | ||
"dependencies": { | ||
"vscode-jsonrpc": "^4.1.0-next.3", | ||
"vscode-languageserver-types": "^3.15.0-next.4" | ||
"vscode-jsonrpc": "^5.0.0-next.2", | ||
"vscode-languageserver-types": "^3.15.0-next.5" | ||
}, | ||
@@ -25,4 +25,4 @@ "scripts": { | ||
"postpublish": "node ../build/npm/post-publish.js", | ||
"compile": "node ../build/bin/tsc -p ./tsconfig.json", | ||
"watch": "node ../build/bin/tsc -w -p ./tsconfig.json", | ||
"compile": "node ../build/bin/tsc -b ./tsconfig.json", | ||
"watch": "node ../build/bin/tsc -b ./tsconfig.json -w", | ||
"test": "node ../node_modules/mocha/bin/_mocha", | ||
@@ -29,0 +29,0 @@ "clean": "node ../node_modules/rimraf/bin.js lib", |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3338151
32
4042
+ Addedvscode-jsonrpc@5.0.1(transitive)
- Removedvscode-jsonrpc@4.1.0-next.3(transitive)
Updatedvscode-jsonrpc@^5.0.0-next.2