Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cac

Package Overview
Dependencies
Maintainers
3
Versions
120
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cac - npm Package Compare versions

Comparing version 6.3.0 to 6.3.1

11

dist/index.js

@@ -598,3 +598,5 @@ 'use strict';

/**
* Output the global help message
* Output the corresponding help message
* When a sub-command is matched, output the help message for the command
* Otherwise output the global one.
*

@@ -604,3 +606,8 @@ * This will also call `process.exit(0)` to quit the process.

outputHelp() {
this.globalCommand.outputHelp();
if (this.matchedCommand) {
this.matchedCommand.outputHelp();
}
else {
this.globalCommand.outputHelp();
}
}

@@ -607,0 +614,0 @@ /**

2

package.json
{
"name": "cac",
"version": "6.3.0",
"version": "6.3.1",
"description": "Simple yet powerful framework for building command-line apps.",

@@ -5,0 +5,0 @@ "repository": {

@@ -71,3 +71,5 @@ /// <reference types="node" />

/**
* Output the global help message
* Output the corresponding help message
* When a sub-command is matched, output the help message for the command
* Otherwise output the global one.
*

@@ -74,0 +76,0 @@ * This will also call `process.exit(0)` to quit the process.

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