From 1977584a975db9fbc2cd36b34ea2e4743f465dd4 Mon Sep 17 00:00:00 2001 From: isaacs Date: Mon, 16 Jul 2012 13:28:37 -0700 Subject: Replace lib/utils/output.js with console.log --- lib/rebuild.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/rebuild.js') diff --git a/lib/rebuild.js b/lib/rebuild.js index c9f623d6c..16451fbbb 100644 --- a/lib/rebuild.js +++ b/lib/rebuild.js @@ -6,7 +6,6 @@ var readInstalled = require("read-installed") , log = require("npmlog") , path = require("path") , npm = require("./npm.js") - , output = require("./utils/output.js") , asyncMap = require("slide").asyncMap , fs = require("graceful-fs") , exec = require("./utils/exec.js") @@ -51,9 +50,10 @@ function cleanBuild (folders, set, cb) { if (er) return cb(er) npm.commands.build(folders, function (er) { if (er) return cb(er) - output.write(folders.map(function (f) { + console.log(folders.map(function (f) { return set[f] + " " + f - }).join("\n"), cb) + }).join("\n")) + cb() }) }) } -- cgit v1.2.3