-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit.js
30 lines (26 loc) · 890 Bytes
/
edit.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// npm edit <pkg>[@<version>]
// open the package folder in the $EDITOR
module.exports = edit
edit.usage = "npm edit <pkg>"
edit.completion = require("./utils/completion/installed-shallow.js")
var npm = require("./npm.js")
, exec = require("./utils/exec.js")
, path = require("path")
, fs = require("graceful-fs")
function edit (args, cb) {
var p = args[0]
if (args.length !== 1 || !p) return cb(edit.usage)
var editor = npm.config.get("editor")
if (!editor) return cb(new Error(
"No editor set. Set the 'editor' config, or $EDITOR environ."))
p = p.split("/")
.join("/node_modules/")
.replace(/(\/node_modules)+/, "/node_modules")
fs.lstat(path.resolve(npm.dir, p), function (er) {
if (er) return cb(er)
exec(editor, [path.resolve(npm.dir, p)], function (er) {
if (er) return cb(er)
npm.commands.rebuild(args, cb)
})
})
}