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

fabric8-analytics-lsp-server

Package Overview
Dependencies
Maintainers
3
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fabric8-analytics-lsp-server - npm Package Compare versions

Comparing version 0.4.4 to 0.4.5

7

collector.js

@@ -130,3 +130,8 @@ /* --------------------------------------------------------------------------------------------

if (error) {
reject(`'${config_1.config.golang_executable} list' command failed with error :: ${stderr}`);
if (error.code == 127) { // Invalid command, go executable not found
reject(`Unable to locate '${config_1.config.golang_executable}'`);
}
else {
reject(`Unable to execute '${config_1.config.golang_executable} list' command, run '${config_1.config.golang_executable} mod tidy' to know more`);
}
}

@@ -133,0 +138,0 @@ else {

2

package.json
{
"name": "fabric8-analytics-lsp-server",
"description": "LSP Server for Dependency Analytics",
"version": "0.4.4",
"version": "0.4.5",
"author": "Pavel Odvody",

@@ -6,0 +6,0 @@ "contributors": [

@@ -224,4 +224,4 @@ /* --------------------------------------------------------------------------------------------

if (ecosystem == "golang") {
console.error("Command execution failed, something wrong with manifest file go.mod\n%s", error);
connection.sendNotification('caError', { 'data': `Unable to execute '${config_1.config.golang_executable} list' command, run '${config_1.config.golang_executable} mod tidy' to resolve dependencies issues` });
connection.console.error(`Command execution failed with error: ${error}`);
connection.sendNotification('caError', { 'data': error });
return;

@@ -228,0 +228,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