Skip to content

Commit

Permalink
fix(cli): help message
Browse files Browse the repository at this point in the history
  • Loading branch information
h13i32maru committed Dec 26, 2016
1 parent a98a83c commit a16e2c1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/ESDocCLI.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,14 @@ export default class ESDocCLI {
console.log('Usage: esdoc [-c esdoc.json]');
console.log('');
console.log('Options:');
console.log(' -c', 'create the documents');
console.log(' -c', 'specify config file');
console.log(' -h', 'output usage information');
console.log(' -v', 'output the version number');
console.log('');
console.log('ESDoc finds configuration:');
console.log(' 1. -c option');
console.log(' 2. .esdoc.json in working directory');
console.log(' 3. .esdoc.js in working directory');
console.log('ESDoc finds configuration by the order:');
console.log(' 1. `-c your-esdoc.json`');
console.log(' 2. `.esdoc.json` in current directory');
console.log(' 3. `.esdoc.js` in current directory');
console.log(' 4. `esdoc` property in package.json');
}

Expand Down

0 comments on commit a16e2c1

Please sign in to comment.