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

@kearisp/cli

Package Overview
Dependencies
Maintainers
0
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kearisp/cli - npm Package Compare versions

Comparing version 2.0.6-dev.1 to 2.0.6-dev.2

17

lib/utils/generateCompletion.js

@@ -22,7 +22,18 @@ "use strict";

COMPREPLY=()
STR=$(compgen -W "\${OPTIONS}" -- "$cur")
if [[ $STR = '__WOCKER_PATH__' ]]; then
COMPREPLY=($(compgen -f -d -- "$cur"))
if [[ $OPTIONS = '__WOCKER_PATH__' ]]; then
local files_and_dirs=($(compgen -f -d -- "$cur"))
for path in "\${files_and_dirs[@]}"; do
if [[ -d "$path" ]]; then
COMPREPLY+=("\${path}/")
else
COMPREPLY+=("$path")
fi
done
compopt -o nospace
else
STR=$(compgen -W "\${OPTIONS}" -- "$cur")
while IFS= read -r line; do

@@ -29,0 +40,0 @@ if [[ $cur != \\'* && $cur != \\"* ]]; then

2

package.json
{
"name": "@kearisp/cli",
"version": "2.0.6-dev.1",
"version": "2.0.6-dev.2",
"license": "MIT",

@@ -5,0 +5,0 @@ "author": "Kris Papercut <krispcut@gmail.com>",

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