1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-05-02 20:37:08 +01:00

Caffeinate.

This commit is contained in:
hacksalot
2016-01-26 06:59:34 -05:00
parent 165eb5d9cd
commit 630cf59cfb
7 changed files with 20 additions and 22 deletions

6
dist/cli/error.js vendored
View File

@ -10,18 +10,18 @@ Error-handling routines for HackMyResume.
var HMSTATUS = require('hackmycore/src/core/status-codes')
var HMSTATUS = require('hackmycore/dist/core/status-codes')
, PKG = require('../../package.json')
, FS = require('fs')
, FCMD = require('hackmycore')
, PATH = require('path')
, WRAP = require('word-wrap')
, M2C = require('hackmycore/src/utils/md2chalk.js')
, M2C = require('hackmycore/dist/utils/md2chalk.js')
, chalk = require('chalk')
, extend = require('extend')
, YAML = require('yamljs')
, printf = require('printf')
, SyntaxErrorEx = require('hackmycore/src/utils/syntax-error-ex');
, SyntaxErrorEx = require('hackmycore/dist/utils/syntax-error-ex');
require('string.prototype.startswith');

8
dist/cli/main.js vendored
View File

@ -20,13 +20,13 @@ Definition of the `main` function.
PATH = require('path');
HMSTATUS = require('hackmycore/src/core/status-codes');
HMSTATUS = require('hackmycore/dist/core/status-codes');
HME = require('hackmycore/src/core/event-codes');
HME = require('hackmycore/dist/core/event-codes');
safeLoadJSON = require('hackmycore/src/utils/safe-json-loader');
safeLoadJSON = require('hackmycore/dist/utils/safe-json-loader');
StringUtils = require('hackmycore/src/utils/string.js');
StringUtils = require('hackmycore/dist/utils/string.js');
_ = require('underscore');

6
dist/cli/out.js vendored
View File

@ -11,10 +11,10 @@ Output routines for HackMyResume.
var chalk = require('chalk')
, HME = require('hackmycore/src/core/event-codes')
, HME = require('hackmycore/dist/core/event-codes')
, _ = require('underscore')
, Class = require('hackmycore/src/utils/class.js')
, M2C = require('hackmycore/src/utils/md2chalk.js')
, Class = require('hackmycore/dist/utils/class.js')
, M2C = require('hackmycore/dist/utils/md2chalk.js')
, PATH = require('path')
, LO = require('lodash')
, FS = require('fs')