Skip to content
This repository has been archived by the owner on Jan 13, 2018. It is now read-only.

Commit

Permalink
renamed: CORE -> APW (issue #70)
Browse files Browse the repository at this point in the history
  • Loading branch information
afelix committed Apr 8, 2012
1 parent 7f16953 commit a1dcb4e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/make.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ var VM = require('vm'),
Q = require('q'),
QFS = require('q-fs'),
INHERIT = require('inherit'),
CORE = require('apw'),
APW = require('apw'),
PATH = require('./path'),
UTIL = require('util'),
BEMUTIL = require('./util'),
Expand All @@ -11,7 +11,7 @@ var VM = require('vm'),

exports.DEFAULT_WORKERS = 10;

exports.Runner = INHERIT(CORE.Runner, {
exports.Runner = INHERIT(APW, {

findAndProcess: function(targets) {
if (!Array.isArray(targets)) targets = [targets];
Expand Down Expand Up @@ -52,7 +52,7 @@ exports.Runner = INHERIT(CORE.Runner, {

exports.createGraph = function(root) {

var arch = new CORE.Arch(),
var arch = new APW.Arch(),
defaultArch = require('./default-arch').Arch,
rootMakefile = PATH.join(root, '.bem', 'make.js');

Expand Down

0 comments on commit a1dcb4e

Please sign in to comment.