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.7-dev.0 to 2.0.7-dev.1

20

lib/makes/Command.js

@@ -88,11 +88,5 @@ "use strict";

const nextCommand = commands[i + 1];
let spread = false;
if (parser.isSpread(command)) {
const name = parser.parseSpreadCommand(command);
const values = [];
while (!parser.eol) {
values.push(parser.part);
parser.next();
}
args[name] = values;
parser.next();
spread = true;
}

@@ -180,2 +174,12 @@ else if (parser.isCommand(command)) {

}
if (spread) {
const name = parser.parseSpreadCommand(command);
const values = [];
while (!parser.eol) {
values.push(parser.part);
parser.next();
}
args[name] = values;
parser.next();
}
}

@@ -182,0 +186,0 @@ if (!parser.eol) {

2

package.json
{
"name": "@kearisp/cli",
"version": "2.0.7-dev.0",
"version": "2.0.7-dev.1",
"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