mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-22 08:20:11 +00:00
commit
201d96fe22
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "fluentcv",
|
"name": "fluentcv",
|
||||||
"version": "0.10.0",
|
"version": "0.10.1",
|
||||||
"description": "Generate beautiful, targeted resumes from your command line, shell, or in Javascript with Node.js.",
|
"description": "Generate polished résumés and CVs in HTML, Markdown, LaTeX, MS Word, PDF, plain text, JSON, XML, YAML, smoke signal, and carrier pigeon.",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/fluentdesk/fluentcv.git"
|
"url": "https://github.com/fluentdesk/fluentcv.git"
|
||||||
@ -32,9 +32,9 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://github.com/fluentdesk/fluentcv",
|
"homepage": "https://github.com/fluentdesk/fluentcv",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"fresca": "^0.2.0",
|
"fresca": "~0.2.1",
|
||||||
"colors": "^1.1.2",
|
"colors": "^1.1.2",
|
||||||
"fluent-themes": "0.6.0-beta",
|
"fluent-themes": "~0.6.1-beta",
|
||||||
"fs-extra": "^0.24.0",
|
"fs-extra": "^0.24.0",
|
||||||
"handlebars": "^4.0.5",
|
"handlebars": "^4.0.5",
|
||||||
"html": "0.0.10",
|
"html": "0.0.10",
|
||||||
|
@ -10,8 +10,8 @@ Underscore template generate for FluentCV.
|
|||||||
module.exports = function( json, jst, format, cssInfo, opts ) {
|
module.exports = function( json, jst, format, cssInfo, opts ) {
|
||||||
|
|
||||||
// Tweak underscore's default template delimeters
|
// Tweak underscore's default template delimeters
|
||||||
var delims = opts.themeObj.delimeters || opts.template;
|
var delims = (opts.themeObj && opts.themeObj.delimeters) || opts.template;
|
||||||
if( opts.themeObj.delimeters ) {
|
if( opts.themeObj && opts.themeObj.delimeters ) {
|
||||||
delims = _.mapObject( delims, function(val,key) {
|
delims = _.mapObject( delims, function(val,key) {
|
||||||
return new RegExp( val, "ig");
|
return new RegExp( val, "ig");
|
||||||
});
|
});
|
||||||
|
@ -121,7 +121,8 @@ Template-based resume generator base for FluentCV.
|
|||||||
Object.keys( curFmt.symLinks ).forEach( function(loc) {
|
Object.keys( curFmt.symLinks ).forEach( function(loc) {
|
||||||
var absLoc = PATH.join(outFolder, loc);
|
var absLoc = PATH.join(outFolder, loc);
|
||||||
var absTarg = PATH.join(PATH.dirname(absLoc), curFmt.symLinks[loc]);
|
var absTarg = PATH.join(PATH.dirname(absLoc), curFmt.symLinks[loc]);
|
||||||
var type = PATH.parse( absLoc ).ext ? 'file' : 'junction'; // 'file', 'dir', or 'junction' (Windows only)
|
// 'file', 'dir', or 'junction' (Windows only)
|
||||||
|
var type = PATH.parse( absLoc ).ext ? 'file' : 'junction';
|
||||||
FS.symlinkSync( absTarg, absLoc, type);
|
FS.symlinkSync( absTarg, absLoc, type);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -140,7 +141,8 @@ Template-based resume generator base for FluentCV.
|
|||||||
*/
|
*/
|
||||||
single: function( json, jst, format, cssInfo, opts ) {
|
single: function( json, jst, format, cssInfo, opts ) {
|
||||||
this.opts.freezeBreaks && ( jst = freeze(jst) );
|
this.opts.freezeBreaks && ( jst = freeze(jst) );
|
||||||
var eng = require( '../eng/' + opts.themeObj.engine + '-generator' );
|
var eng = require( '../eng/' + ((opts.themeObj && opts.themeObj.engine) ||
|
||||||
|
opts.engine) + '-generator' );
|
||||||
var result = eng( json, jst, format, cssInfo, opts );
|
var result = eng( json, jst, format, cssInfo, opts );
|
||||||
this.opts.freezeBreaks && ( result = unfreeze(result) );
|
this.opts.freezeBreaks && ( result = unfreeze(result) );
|
||||||
return result;
|
return result;
|
||||||
|
Loading…
Reference in New Issue
Block a user