Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vscode-languageclient

Package Overview
Dependencies
Maintainers
9
Versions
302
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vscode-languageclient - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

thirdpartynotices.txt

6

lib/main.d.ts

@@ -28,5 +28,9 @@ import * as cp from 'child_process';

}
export declare enum TransportKind {
stdio = 0,
ipc = 1,
}
export interface NodeModule {
module: string;
useIPC?: boolean;
transport?: TransportKind;
args?: string[];

@@ -33,0 +37,0 @@ options?: ForkOptions;

@@ -56,2 +56,7 @@ /* --------------------------------------------------------------------------------------------

}
(function (TransportKind) {
TransportKind[TransportKind["stdio"] = 0] = "stdio";
TransportKind[TransportKind["ipc"] = 1] = "ipc";
})(exports.TransportKind || (exports.TransportKind = {}));
var TransportKind = exports.TransportKind;
var ClientState;

@@ -405,3 +410,3 @@ (function (ClientState) {

options.cwd = options.cwd || vscode_1.workspace.rootPath;
if (node.useIPC) {
if (node.transport === TransportKind.ipc) {
_this._childProcess = cp.fork(node.module, node.args || [], options);

@@ -408,0 +413,0 @@ if (_this._childProcess.pid) {

2

package.json
{
"name": "vscode-languageclient",
"description": "VSCode Language client implementation",
"version": "1.0.1",
"version": "1.0.2",
"author": "Microsoft Corporation",

@@ -6,0 +6,0 @@ "license": "MIT",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc