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

clime

Package Overview
Dependencies
Maintainers
2
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clime - npm Package Compare versions

Comparing version 0.5.13 to 0.5.14

7

bld/core/command/command.js

@@ -12,2 +12,3 @@ "use strict";

const _1 = require(".");
const hasOwnProperty = Object.prototype.hasOwnProperty;
/**

@@ -44,3 +45,3 @@ * Command context.

*/
function command({ brief, description, skippedArgs: skippedArgsEnabled = false } = {}) {
function command({ brief, description, skippedArgs: skippedArgsEnabled = false, } = {}) {
return (target) => {

@@ -123,5 +124,7 @@ target.brief = brief;

...getOptionDefinitions(Object.getPrototypeOf(OptionConstructor)),
...(OptionConstructor.definitions || []),
...(hasOwnProperty.call(OptionConstructor, 'definitions')
? OptionConstructor.definitions
: []),
];
}
//# sourceMappingURL=command.js.map

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

...parameterUsageTexts,
...TargetCommand.skippedArgsEnabled ? ['-- ...'] : []
...(TargetCommand.skippedArgsEnabled ? ['-- ...'] : []),
].join(' ');

@@ -218,0 +218,0 @@ this.texts.push(`\

{
"name": "clime",
"version": "0.5.13",
"version": "0.5.14",
"description": "The command-line interface framework for TypeScript.",

@@ -5,0 +5,0 @@ "main": "bld/index.js",

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