2016-01-27 10:29:26 +00:00
|
|
|
(function() {
|
2018-02-12 05:05:29 +00:00
|
|
|
/**
|
|
|
|
Status codes for HackMyResume.
|
|
|
|
@module core/status-codes
|
|
|
|
@license MIT. See LICENSE.MD for details.
|
|
|
|
*/
|
2016-01-27 10:29:26 +00:00
|
|
|
module.exports = {
|
|
|
|
success: 0,
|
|
|
|
themeNotFound: 1,
|
|
|
|
copyCss: 2,
|
|
|
|
resumeNotFound: 3,
|
|
|
|
missingCommand: 4,
|
|
|
|
invalidCommand: 5,
|
|
|
|
resumeNotFoundAlt: 6,
|
|
|
|
inputOutputParity: 7,
|
|
|
|
createNameMissing: 8,
|
2016-02-01 14:25:22 +00:00
|
|
|
pdfGeneration: 9,
|
2016-01-27 10:29:26 +00:00
|
|
|
missingPackageJSON: 10,
|
|
|
|
invalid: 11,
|
|
|
|
invalidFormat: 12,
|
|
|
|
notOnPath: 13,
|
|
|
|
readError: 14,
|
|
|
|
parseError: 15,
|
|
|
|
fileSaveError: 16,
|
|
|
|
generateError: 17,
|
|
|
|
invalidHelperUse: 18,
|
|
|
|
mixedMerge: 19,
|
|
|
|
invokeTemplate: 20,
|
|
|
|
compileTemplate: 21,
|
|
|
|
themeLoad: 22,
|
|
|
|
invalidParamCount: 23,
|
2016-02-02 02:14:36 +00:00
|
|
|
missingParam: 24,
|
2016-02-13 05:11:52 +00:00
|
|
|
createError: 25,
|
2018-01-29 07:04:00 +00:00
|
|
|
validateError: 26,
|
|
|
|
invalidOptionsFile: 27,
|
2018-01-30 07:34:58 +00:00
|
|
|
optionsFileNotFound: 28,
|
2018-02-01 02:11:21 +00:00
|
|
|
unknownSchema: 29,
|
2018-02-10 02:34:24 +00:00
|
|
|
themeHelperLoad: 30,
|
|
|
|
invalidSchemaVersion: 31
|
2016-01-27 10:29:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}).call(this);
|
2016-02-02 02:14:36 +00:00
|
|
|
|
|
|
|
//# sourceMappingURL=status-codes.js.map
|