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
path: root/lib
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2010-07-19 05:09:33 +0400
committerisaacs <i@izs.me>2010-07-25 05:51:19 +0400
commit511858f0cbcfb02f1ed3cb6c67e15f826210df2f (patch)
tree8aa78c9722499a758642fd7dab79ce6cc6e85525 /lib
parent03033918ac41b753b76f2538ae8b85c3c02243ab (diff)
add a TODO
Diffstat (limited to 'lib')
-rw-r--r--lib/build.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/build.js b/lib/build.js
index 2da41dad2..0dfb98a1f 100644
--- a/lib/build.js
+++ b/lib/build.js
@@ -179,6 +179,10 @@ function resolveDependencies (pkg, topCb) {
})(deps.pop())
}
, function (cb) {
+ // TODO: Move this to the END of the install process, after build() succeeds
+ // or fails, so that it works with "install everything at once" type installs,
+ // such as pulling many reqs from the registry all at once.
+
// link in all the found reqs.
;(function L (req) {
if (!req) return cb()