All Versions
107
Latest Version
Avg Release Cycle
37 days
Latest Release
546 days ago

Changelog History
Page 7

  • v2.11.0 Changes

    July 03, 2017
    • Fix help section order and padding (#652)
    • feature: support for signals to subcommands (#632)
    • Fixed #37, --help should not display first (#447)
    • Fix translation errors. (#570)
    • Add package-lock.json
    • Remove engines
    • Upgrade package version
    • Prefix events to prevent conflicts between commands and options (#494)
    • Removing dependency on graceful-readlink
    • Support setting name in #name function and make it chainable
    • Add .vscode directory to .gitignore (Visual Studio Code metadata)
    • Updated link to ruby commander in readme files
  • v2.10.0 Changes

    June 19, 2017
    • Update .travis.yml. drop support for older node.js versions.
    • Fix require arguments in README.md
    • On SemVer you do not start from 0.0.1
    • Add missing semi colon in readme
    • Add save param to npm install
    • node v6 travis test
    • Update Readme_zh-CN.md
    • Allow literal '--' to be passed-through as an argument
    • Test subcommand alias help
    • link build badge to master branch
    • Support the alias of Git style sub-command
    • added keyword commander for better search result on npm
    • Fix Sub-Subcommands
    • test node.js stable
    • Fixes TypeError when a command has an option called --description
    • Update README.md to make it beginner friendly and elaborate on the difference between angled and square brackets.
    • Add chinese Readme file
  • v2.9.0 Changes

    October 13, 2015
    • Add option isDefault to set default subcommand #415 @Qix-
    • Add callback to allow filtering or post-processing of help text #434 @djulien
    • Fix undefined text in help information close #414 #416 @zhiyelee
  • v2.8.1 Changes

    April 22, 2015
    • Back out support multiline description Close #396 #397
  • v2.8.0 Changes

    April 07, 2015
    • Add process.execArg support, execution args like --harmony will be passed to sub-commands #387 @DigitalIO @zhiyelee
    • Fix bug in Git-style sub-commands #372 @zhiyelee
    • Allow commands to be hidden from help #383 @tonylukasavage
    • When git-style sub-commands are in use, yet none are called, display help #382 @claylo
    • Add ability to specify arguments syntax for top-level command #258 @rrthomas
    • Support multiline descriptions #208 @zxqfox
  • v2.7.1 Changes

    March 11, 2015
    • Revert #347 (fix collisions when option and first arg have same name) which causes a bug in #367.
  • v2.7.0 Changes

    March 09, 2015
    • Fix git-style bug when installed globally. Close #335 #349 @zhiyelee
    • Fix collisions when option and first arg have same name. Close #346 #347 @tonylukasavage
    • Add support for camelCase on opts(). Close #353 @nkzawa
    • Add node.js 0.12 and io.js to travis.yml
    • Allow RegEx options. #337 @palanik
    • Fixes exit code when sub-command failing. Close #260 #332 @pirelenito
    • git-style bin files in $PATH make sense. Close #196 #327 @zhiyelee
  • v2.6.0 Changes

    December 30, 2014
    • added Command#allowUnknownOption method. Close #138 #318 @doozr @zhiyelee
    • Add application description to the help msg. Close #112 @dalssoft
  • v2.5.1 Changes

    December 15, 2014
    • fixed two bugs incurred by variadic arguments. Close #291 @Quentin01 #302 @zhiyelee
  • v2.5.0 Changes

    October 24, 2014
    • add support for variadic arguments. Closes #277 @whitlockjc