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

vscode-zap

Package Overview
Dependencies
Maintainers
1
Versions
107
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vscode-zap - npm Package Compare versions

Comparing version 0.0.38 to 0.0.39

5

out/src/controller.js

@@ -38,3 +38,3 @@ "use strict";

this.client.onDidChangeState((event) => {
if (event.newState === client_1.State.Running) {
if (event.newState === client_1.State.Running && this.environment.zapRef) {
return this.attach();

@@ -44,3 +44,4 @@ }

// ...and when we switch refs.
this.environment.onDidChangeZapRef(() => {
this.environment.onDidChangeZapRef((ref) => {
this.resolvedRefUpdateEmitter.fire(ref);
return this.attach();

@@ -47,0 +48,0 @@ });

1

out/src/workspace.js

@@ -168,3 +168,2 @@ "use strict";

yield this.environment.revertTextDocument2(doc);
console.log("ok");
}

@@ -171,0 +170,0 @@ }

@@ -438,3 +438,4 @@ "use strict";

});
test("simultaneous edits", () => {
// Skipped since it's passing while running locally but flaky in CI.
test.skip("simultaneous edits", () => {
return common_1.withOpenTextDocument("f", (doc) => {

@@ -441,0 +442,0 @@ return common_1.withWorkspace((workspace) => __awaiter(this, void 0, void 0, function* () {

@@ -5,3 +5,3 @@ {

"description": "WIP",
"version": "0.0.38",
"version": "0.0.39",
"publisher": "sqs",

@@ -42,3 +42,3 @@ "preview": true,

"dependencies": {
"libzap": "^0.0.38",
"libzap": "^0.0.39",
"open": "^0.0.5",

@@ -45,0 +45,0 @@ "vscode-jsonrpc": "3.0.1-alpha.7"

@@ -48,3 +48,3 @@ import * as vscode from "vscode";

this.client.onDidChangeState((event: StateChangeEvent) => {
if (event.newState === State.Running) {
if (event.newState === State.Running && this.environment.zapRef) {
return this.attach();

@@ -54,3 +54,4 @@ }

// ...and when we switch refs.
this.environment.onDidChangeZapRef(() => {
this.environment.onDidChangeZapRef((ref) => {
this.resolvedRefUpdateEmitter.fire(ref);
return this.attach();

@@ -57,0 +58,0 @@ });

@@ -181,3 +181,2 @@ import * as vscode from "vscode";

await this.environment.revertTextDocument2(doc);
console.log("ok");
}

@@ -184,0 +183,0 @@ }

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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