Socket
Socket
Sign inDemoInstall

cmdln

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.2.0 to 3.2.1

5

CHANGES.md
# node-cmdln Changelog
## 3.2.1
- [issue #8] Fix error class name in stack traces in node 0.12 and later.
## 3.2.0

@@ -4,0 +9,0 @@

4

lib/cmdln.js

@@ -112,2 +112,3 @@ /*

util.inherits(CmdlnError, WError);
CmdlnError.prototype.name = 'CmdlnError';

@@ -126,2 +127,3 @@ function OptionError(cause, subcmd) {

util.inherits(OptionError, CmdlnError);
OptionError.prototype.name = 'OptionError';

@@ -142,2 +144,3 @@ function UnknownCommandError(cause, command) {

util.inherits(UnknownCommandError, CmdlnError);
UnknownCommandError.prototype.name = 'UnknownCommandError';

@@ -152,2 +155,3 @@ function NoCommandError() {

util.inherits(NoCommandError, CmdlnError);
NoCommandError.prototype.name = 'NoCommandError';

@@ -154,0 +158,0 @@

2

package.json
{
"name": "cmdln",
"version": "3.2.0",
"version": "3.2.1",
"description": "helper lib for creating CLI tools with subcommands; think `git`, `svn`, `zfs`",

@@ -5,0 +5,0 @@ "author": "Trent Mick (http://trentm.com)",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc