diff --git a/package.json b/package.json index 598d8b3..d82aef5 100755 --- a/package.json +++ b/package.json @@ -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" diff --git a/yarn-linked.js b/yarn-linked.js index 02f868d..d994b3d 100755 --- a/yarn-linked.js +++ b/yarn-linked.js @@ -63,7 +63,8 @@ const argv = yargs .usage('Usage: $0 [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;