-
Notifications
You must be signed in to change notification settings - Fork 0
/
edit.js
68 lines (57 loc) · 1.81 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// npm edit <pkg>
// open the package folder in the $EDITOR
const { resolve } = require('path')
const fs = require('graceful-fs')
const { spawn } = require('child_process')
const splitPackageNames = require('./utils/split-package-names.js')
const completion = require('./utils/completion/installed-shallow.js')
const BaseCommand = require('./base-command.js')
class Edit extends BaseCommand {
static get description () {
return 'Edit an installed package'
}
/* istanbul ignore next - see test/lib/load-all-commands.js */
static get name () {
return 'edit'
}
/* istanbul ignore next - see test/lib/load-all-commands.js */
static get usage () {
return ['<pkg>[/<subpkg>...]']
}
/* istanbul ignore next - see test/lib/load-all-commands.js */
static get params () {
return ['editor']
}
/* istanbul ignore next - see test/lib/load-all-commands.js */
async completion (opts) {
return completion(this.npm, opts)
}
exec (args, cb) {
this.edit(args).then(() => cb()).catch(cb)
}
async edit (args) {
if (args.length !== 1)
throw new Error(this.usage)
const path = splitPackageNames(args[0])
const dir = resolve(this.npm.dir, path)
// graceful-fs does not promisify
await new Promise((resolve, reject) => {
fs.lstat(dir, (err) => {
if (err)
return reject(err)
const [bin, ...args] = this.npm.config.get('editor').split(/\s+/)
const editor = spawn(bin, [...args, dir], { stdio: 'inherit' })
editor.on('exit', (code) => {
if (code)
return reject(new Error(`editor process exited with code: ${code}`))
this.npm.commands.rebuild([dir], (err) => {
if (err)
return reject(err)
resolve()
})
})
})
})
}
}
module.exports = Edit