Skip to content

Commit

Permalink
add example
Browse files Browse the repository at this point in the history
  • Loading branch information
liziqiang committed Feb 19, 2020
1 parent 47f1a73 commit c94fb03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yarn-linked",
"version": "1.1.8",
"version": "1.1.9",
"description": "List or remove yarn linked modules",
"bin": {
"yarn-linked": "yarn-linked.js"
Expand Down
3 changes: 2 additions & 1 deletion yarn-linked.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ const argv = yargs
.usage('Usage: $0 <command> [options]')
.command('list', 'list all linked modules')
.command('remove', 'remove all linked modules')
.example('$0 remove', 'remove linked modules')
.example('$0 remove', 'remove all linked modules')
.example('$0 remove module', 'remove specified linked module')
.completion('completion', () => COMMANDS)
.argv;

Expand Down

0 comments on commit c94fb03

Please sign in to comment.