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

bash-language-server

Package Overview
Dependencies
Maintainers
2
Versions
108
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bash-language-server - npm Package Compare versions

Comparing version 4.10.2 to 4.10.3

9

CHANGELOG.md
# Bash Language Server
## 4.10.3
- Use cat as man pager https://github.com/bash-lsp/bash-language-server/pull/909
## 4.10.2
- Bump semver development dependency causing false positive distributions security warnings https://github.com/bash-lsp/bash-language-server/pull/905
## 4.10.1

@@ -4,0 +13,0 @@

2

out/util/sh.d.ts

@@ -6,3 +6,3 @@ /**

/**
* Get documentation for the given word by usingZZ help and man.
* Get documentation for the given word by using help and man.
*/

@@ -9,0 +9,0 @@ export declare function getShellDocumentationWithoutCache({ word, }: {

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

/**
* Get documentation for the given word by usingZZ help and man.
* Get documentation for the given word by using help and man.
*/

@@ -74,3 +74,3 @@ function getShellDocumentationWithoutCache({ word, }) {

// for completions.
{ type: 'man', command: `man ${word} | col -bx` },
{ type: 'man', command: `man -P cat ${word} | col -bx` },
];

@@ -77,0 +77,0 @@ for (const { type, command } of DOCUMENTATION_COMMANDS) {

@@ -6,3 +6,3 @@ {

"license": "MIT",
"version": "4.10.2",
"version": "4.10.3",
"main": "./out/server.js",

@@ -9,0 +9,0 @@ "typings": "./out/server.d.ts",

@@ -56,3 +56,3 @@ import * as ChildProcess from 'child_process'

/**
* Get documentation for the given word by usingZZ help and man.
* Get documentation for the given word by using help and man.
*/

@@ -77,3 +77,3 @@ export async function getShellDocumentationWithoutCache({

// for completions.
{ type: 'man', command: `man ${word} | col -bx` },
{ type: 'man', command: `man -P cat ${word} | col -bx` },
]

@@ -80,0 +80,0 @@

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