Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRebecca Turner <turner@mikomi.org>2015-01-10 01:18:07 +0300
committerRebecca Turner <me@re-becca.org>2015-06-26 03:26:41 +0300
commitbd6919729f9535f4e3698e78eeb2331236dcdeea (patch)
tree2433cc9a06455f11433b4f5cf07fd4c5c30e6088 /lib/rebuild.js
parenta450aab092c7b240d981778495496d1f19a9bcd1 (diff)
Add multi-stage installer
Diffstat (limited to 'lib/rebuild.js')
-rw-r--r--lib/rebuild.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/rebuild.js b/lib/rebuild.js
index ab372c6ec..70c33e91e 100644
--- a/lib/rebuild.js
+++ b/lib/rebuild.js
@@ -29,9 +29,11 @@ function rebuild (args, cb) {
function cleanBuild (folders, set, cb) {
npm.commands.build(folders, function (er) {
if (er) return cb(er)
+ log.clearProgress()
console.log(folders.map(function (f) {
return set[f] + " " + f
}).join("\n"))
+ log.showProgress()
cb()
})
}