New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

sprotty-vscode-protocol

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sprotty-vscode-protocol - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

6

lib/lsp/editing/editing.d.ts

@@ -34,1 +34,7 @@ /********************************************************************************

}
export declare namespace DeleteWithWorkspaceEditAction {
const KIND = "deleteWithWorkspaceEdit";
function is(action: Action): action is DeleteWithWorkspaceEditAction;
}
export interface DeleteWithWorkspaceEditAction extends Action {
}

@@ -34,2 +34,10 @@ "use strict";

})(WorkspaceEditAction = exports.WorkspaceEditAction || (exports.WorkspaceEditAction = {}));
var DeleteWithWorkspaceEditAction;
(function (DeleteWithWorkspaceEditAction) {
DeleteWithWorkspaceEditAction.KIND = 'deleteWithWorkspaceEdit';
function is(action) {
return action.kind === DeleteWithWorkspaceEditAction.KIND;
}
DeleteWithWorkspaceEditAction.is = is;
})(DeleteWithWorkspaceEditAction = exports.DeleteWithWorkspaceEditAction || (exports.DeleteWithWorkspaceEditAction = {}));
//# sourceMappingURL=editing.js.map

6

package.json
{
"name": "sprotty-vscode-protocol",
"version": "0.0.3",
"version": "0.0.4",
"displayName": "Sprotty VSCode Integration - Protocol between webview and extension",

@@ -53,3 +53,3 @@ "description": "Glue code to integrate Sprotty diagrams in VSCode extensions (protocol part)",

"prepare": "yarn run clean && yarn run build",
"clean": "rimraf lib sprotty-vscode*.tgz",
"clean": "rimraf lib",
"build": "tsc",

@@ -59,3 +59,3 @@ "watch": "tsc -w",

},
"gitHead": "1fe9f3272ed14e182b67deabef1d1fc9b6e73dca"
"gitHead": "99132778720736ee312df31a76df741ab0c4c082"
}

@@ -45,1 +45,13 @@ /********************************************************************************

}
export namespace DeleteWithWorkspaceEditAction {
export const KIND = 'deleteWithWorkspaceEdit';
export function is(action: Action): action is DeleteWithWorkspaceEditAction {
return action.kind === KIND;
}
}
export interface DeleteWithWorkspaceEditAction extends Action {
}

Sorry, the diff of this file is not supported yet

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