mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
289 B
12 lines
289 B
13 years ago
|
module.exports = root
|
||
|
|
||
|
var npm = require("./npm.js")
|
||
|
, output = require("./utils/output.js")
|
||
|
, log = require("./utils/log.js")
|
||
|
|
||
|
root.usage = "npm root\nnpm root -g\n(just prints the root folder)"
|
||
|
|
||
|
function root (args, cb) {
|
||
|
output.write(npm.dir, function (er) { cb(er, npm.dir) })
|
||
|
}
|