Skip to content

Commit

Permalink
fix: re-added default theme option
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasdavis committed Nov 18, 2020
1 parent ca91032 commit e33cf78
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
13 changes: 6 additions & 7 deletions README.md
Expand Up @@ -20,13 +20,12 @@ npm install -g resume-cli

## Commands at a glance

| command | description |
| ------- | ----------- |
| init | Initialize a `resume.json` file |
| test | Schema validation test your `resume.json` |
| export [fileName.html] | Export locally to `.html` |
| serve | Serve resume at `http://localhost:4000/` |

| command | description |
| ---------------------- | ----------------------------------------- |
| init | Initialize a `resume.json` file |
| test | Schema validation test your `resume.json` |
| export [fileName.html] | Export locally to `.html` |
| serve | Serve resume at `http://localhost:4000/` |

# Usage

Expand Down
3 changes: 2 additions & 1 deletion index.js
Expand Up @@ -26,8 +26,9 @@ lib.preFlow(async (err, results) => {
.version(pkg.version)
.option(
'-t, --theme <theme name>',
'Specify theme used by `export` and `serve` (default: even) or specify a path starting with . (use . for current directory or ../some/other/dir)',
'Specify theme used by `export` and `serve` or specify a path starting with . (use . for current directory or ../some/other/dir)',
normalizeTheme,
'jsonresume-theme-even',
)
.option('-f, --format <file type extension>', 'Used by `export`.')
.option(
Expand Down

0 comments on commit e33cf78

Please sign in to comment.