Skip to content

Commit

Permalink
Update "hackmyapi" references.
Browse files Browse the repository at this point in the history
  • Loading branch information
hacksalot committed Jan 24, 2016
1 parent 8652c7e commit fc937e3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions src/cli/error.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');


Expand Down
10 changes: 5 additions & 5 deletions src/cli/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
6 changes: 3 additions & 3 deletions src/cli/out.js
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit fc937e3

Please sign in to comment.