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/search.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/search.js')
-rw-r--r--lib/search.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/search.js b/lib/search.js
index ae205994e..f830c1cb4 100644
--- a/lib/search.js
+++ b/lib/search.js
@@ -2,7 +2,7 @@
module.exports = exports = search
var npm = require("../npm")
- , registry = require("./utils/registry")
+ , registry = require("./utils/npm-registry-client")
, semver = require("semver")
, output
, log = require("./utils/log")