1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-06-30 23:40:05 +01:00

Update "hackmyapi" references.

This commit is contained in:
hacksalot 2016-01-24 17:14:53 -05:00
parent 8652c7ecdf
commit fc937e3ec8
3 changed files with 12 additions and 12 deletions

View File

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

View File

@ -10,16 +10,16 @@ Definition of the `main` function.
var HMR = require( 'hackmyapi')
var HMR = require( 'hackmycore')
, PKG = require('../../package.json')
, FS = require('fs')
, EXTEND = require('extend')
, chalk = require('chalk')
, PATH = require('path')
, HMSTATUS = require('hackmyapi/src/core/status-codes')
, HME = require('hackmyapi/src/core/event-codes')
, safeLoadJSON = require('hackmyapi/src/utils/safe-json-loader')
, StringUtils = require('hackmyapi/src/utils/string.js')
, HMSTATUS = require('hackmycore/src/core/status-codes')
, HME = require('hackmycore/src/core/event-codes')
, safeLoadJSON = require('hackmycore/src/utils/safe-json-loader')
, StringUtils = require('hackmycore/src/utils/string.js')
, _ = require('underscore')
, OUTPUT = require('./out')
, PAD = require('string-padding')

View File

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