Skip to content

Commit

Permalink
docs: rename alias
Browse files Browse the repository at this point in the history
  • Loading branch information
ICELI committed Jun 23, 2017
1 parent 89b3e16 commit a139d71
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions bin/jm
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ program

program
.command('jsdoc')
.alias('doc')
.alias('d')
.usage('-c <path>')
.description('generator jsdoc')
.action(function () {
Expand All @@ -97,7 +97,7 @@ program

program
.command('changelog')
.alias('log')
.alias('l')
.description('generator CHANGELOG.md')
.action(function() {
const fileName = typeof program.args[0] === 'string' ? program.args[0] : 'CHANGELOG.md';
Expand All @@ -116,6 +116,7 @@ program

program
.command('author')
.alias('a')
.description('generator AUTHORS.md')
.action(function () {
const options = getOptions();
Expand Down

0 comments on commit a139d71

Please sign in to comment.