1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-05-10 15:57:07 +01:00

Reverted the compiled JS to avoid merge conflicts

This commit is contained in:
Daniele Rapagnani
2016-02-14 22:21:06 +01:00
parent 3c166a21a0
commit ba6b8d45f5
9 changed files with 30 additions and 58 deletions

View File

@ -56,10 +56,7 @@ Implementation of the 'analyze' verb for HackMyResume.
var r;
r = ResumeFactory.loadOne(src, {
format: 'FRESH',
objectify: true,
inner: {
"private": opts["private"] === true
}
objectify: true
}, this);
if (opts.assert && this.hasError()) {
return {};

8
dist/verbs/build.js vendored
View File

@ -109,8 +109,7 @@ Implementation of the 'build' verb for HackMyResume.
objectify: false,
quit: true,
inner: {
sort: _opts.sort,
"private": _opts["private"]
sort: _opts.sort
}
}, this);
problemSheets = _.filter(sheetObjects, function(so) {
@ -199,9 +198,7 @@ Implementation of the 'build' verb for HackMyResume.
r: rez,
theme: theme
});
_rezObj = new RTYPES[toFormat]().parseJSON(rez, {
"private": _opts["private"]
});
_rezObj = new RTYPES[toFormat]().parseJSON(rez);
targets = _expand(dst, theme);
_.each(targets, function(t) {
var ref;
@ -236,7 +233,6 @@ Implementation of the 'build' verb for HackMyResume.
var that;
_opts.theme = (opts.theme && opts.theme.toLowerCase().trim()) || 'modern';
_opts.prettify = opts.prettify === true;
_opts["private"] = opts["private"] === true;
_opts.css = opts.css;
_opts.pdf = opts.pdf;
_opts.wrap = opts.wrap || 60;

View File

@ -92,10 +92,7 @@ Implementation of the 'convert' verb for HackMyResume.
var rinfo, s, srcFmt, targetFormat;
rinfo = ResumeFactory.loadOne(src, {
format: null,
objectify: true,
inner: {
"private": false
}
objectify: true
});
if (rinfo.fluenterror) {
return rinfo;