Skip to content

Commit

Permalink
fix(theme): use normalized theme name by default (#370)
Browse files Browse the repository at this point in the history
  • Loading branch information
rbardini committed Jul 7, 2020
1 parent 618866c commit 3474466
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ lib.preFlow(async function(err, results) {
program
.usage("[command] [options]")
.version(pkg.version)
.option('-t, --theme <theme name>', 'Specify theme used by `export` (default: even)', normalizeTheme, 'even')
.option('-t, --theme <theme name>', 'Specify theme used by `export` (default: even)', normalizeTheme, 'jsonresume-theme-even')
.option('-f, --format <file type extension>', 'Used by `export`.')
.option('-r, --resume <resume filename>', 'Used by `serve` (default: resume.json)', path.join(process.cwd(), 'resume.json'))
.option('-p, --port <port>', 'Used by `serve` (default: 4000)', 4000)
Expand Down

0 comments on commit 3474466

Please sign in to comment.