1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-05-11 08:17:07 +01:00

Compare commits

...

3 Commits

Author SHA1 Message Date
JD
f9c4a70ca4 Merge pull request #13 from fluentdesk/ver/0.7.1
Ver/0.7.1
2015-10-27 07:35:40 -04:00
1782d06b37 Bump version. 2015-10-27 07:39:06 -04:00
5dee90b8e3 Remove process.exit() call. 2015-10-27 07:37:24 -04:00
3 changed files with 3 additions and 5 deletions

View File

@ -58,7 +58,7 @@ fluentcv in1.json in2.json -o out.html -o out.doc -o out.pdf
You should see something to the effect of:
```
*** FluentCV v0.7.0 ***
*** FluentCV v0.7.1 ***
Reading JSON resume: foo/resume.json
Applying MODERN Theme (7 formats)
Generating HTML resume: out/resume.html
@ -81,7 +81,7 @@ fluentcv resume.json -t modern
fluentcv resume.json -t ~/foo/bar/my-custom-theme/
```
As of v0.7.0, available predefined themes are `modern`, `minimist`, and `hello-world`.
As of v0.7.1, available predefined themes are `modern`, `minimist`, and `hello-world`.
### Merging resumes

View File

@ -1,6 +1,6 @@
{
"name": "fluentcv",
"version": "0.7.0",
"version": "0.7.1",
"description": "Generate beautiful, targeted resumes from your command line, shell, or in Javascript with Node.js.",
"repository": {
"type": "git",

View File

@ -37,8 +37,6 @@ function main() {
// Generate!
FCMD.generate( src, dst, opts, logMsg );
process.exit(0);
}
function logMsg( msg ) {