Socket
Socket
Sign inDemoInstall

clipanion

Package Overview
Dependencies
Maintainers
1
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clipanion - npm Package Compare versions

Comparing version 3.0.0-rc.9 to 3.0.0-rc.10

7

lib/advanced/Cli.js

@@ -52,5 +52,8 @@ 'use strict';

const command = new commandClass();
for (const [key, value] of Object.entries(command))
if (typeof value === `object` && value !== null && value[Command.Command.isOption])
for (const key in command) {
const value = command[key];
if (typeof value === `object` && value !== null && value[Command.Command.isOption]) {
specs.set(key, value);
}
}
const builder = this.builder.command();

@@ -57,0 +60,0 @@ const index = builder.cliIndex;

{
"name": "clipanion",
"version": "3.0.0-rc.9",
"version": "3.0.0-rc.10",
"main": "lib/advanced/index",

@@ -5,0 +5,0 @@ "license": "MIT",

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