1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-05-03 04:47:07 +01:00

Asynchrony.

This commit is contained in:
hacksalot
2016-02-01 21:14:36 -05:00
parent 212b01092c
commit 70f45d468d
77 changed files with 1162 additions and 519 deletions

View File

@ -69,3 +69,5 @@ Definition of the AbstractResume class.
module.exports = AbstractResume;
}).call(this);
//# sourceMappingURL=abstract-resume.js.map

View File

@ -58,3 +58,5 @@ Event code definitions.
];
}).call(this);
//# sourceMappingURL=default-formats.js.map

View File

@ -16,3 +16,5 @@ Event code definitions.
};
}).call(this);
//# sourceMappingURL=default-options.js.map

View File

@ -37,3 +37,5 @@ Event code definitions.
};
}).call(this);
//# sourceMappingURL=event-codes.js.map

View File

@ -103,3 +103,5 @@ The HackMyResume date representation.
};
}).call(this);
//# sourceMappingURL=fluent-date.js.map

View File

@ -517,3 +517,5 @@ Definition of the FRESHResume class.
module.exports = FreshResume;
}).call(this);
//# sourceMappingURL=fresh-resume.js.map

View File

@ -277,3 +277,5 @@ Definition of the FRESHTheme class.
module.exports = FRESHTheme;
}).call(this);
//# sourceMappingURL=fresh-theme.js.map

View File

@ -429,3 +429,5 @@ Definition of the JRSResume class.
module.exports = JRSResume;
}).call(this);
//# sourceMappingURL=jrs-resume.js.map

View File

@ -103,3 +103,5 @@ Definition of the JRSTheme class.
module.exports = JRSTheme;
}).call(this);
//# sourceMappingURL=jrs-theme.js.map

View File

@ -83,7 +83,7 @@ Definition of the ResumeFactory class.
};
_parse = function(fileName, opts, eve) {
var ex, orgFormat, rawData, ret;
var orgFormat, rawData, ret;
rawData = null;
try {
eve && eve.stat(HME.beforeRead, {
@ -108,20 +108,15 @@ Definition of the ResumeFactory class.
});
return ret;
} catch (_error) {
ex = {
return {
fluenterror: rawData ? HACKMYSTATUS.parseError : HACKMYSTATUS.readError,
inner: _error,
raw: rawData,
file: fileName,
shouldExit: false
file: fileName
};
opts.quit && (ex.quit = true);
eve && eve.err(ex.fluenterror, ex);
if (opts["throw"]) {
throw ex;
}
return ex;
}
};
}).call(this);
//# sourceMappingURL=resume-factory.js.map

View File

@ -31,7 +31,10 @@ Status codes for HackMyResume.
compileTemplate: 21,
themeLoad: 22,
invalidParamCount: 23,
missingParam: 24
missingParam: 24,
createError: 25
};
}).call(this);
//# sourceMappingURL=status-codes.js.map