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:
authorisaacs <i@izs.me>2011-03-12 02:04:59 +0300
committerisaacs <i@izs.me>2011-03-22 01:56:06 +0300
commita139dcf5851bbd6152a9e652099387886843d71d (patch)
treeaa49c68c6a51f01c47c5c7db994ebb3d9c3c275c /lib/owner.js
parent135f0a1022b678aa3e22b791f29355f3b91836be (diff)
rename registry to 'npm-registry-client'
This is the first step to removing it from npm-core and using it as a submodule. However, before that, I need to figure out how to be able to split out configuration and logging in such a way that the registry can access them somehow.
Diffstat (limited to 'lib/owner.js')
-rw-r--r--lib/owner.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/owner.js b/lib/owner.js
index fbd12076e..4c183f5aa 100644
--- a/lib/owner.js
+++ b/lib/owner.js
@@ -25,7 +25,7 @@ owner.completion = function(args, index, cb) {
} else cb(null, getCompletions(subcmd, subcmdList))
}
-var registry = require("./utils/registry")
+var registry = require("./utils/npm-registry-client")
, get = registry.request.GET
, put = registry.request.PUT
, log = require("./utils/log")