mirror of
https://github.com/nodejs/node.git
synced 2025-05-16 02:01:52 +00:00

PR-URL: https://github.com/nodejs/node/pull/40726 Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Rich Trott <rtrott@gmail.com>
60 lines
1.7 KiB
JavaScript
60 lines
1.7 KiB
JavaScript
// 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)
|
|
}
|
|
|
|
async exec (args) {
|
|
if (args.length !== 1)
|
|
throw this.usageError()
|
|
|
|
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.exec('rebuild', [dir]).catch(reject).then(resolve)
|
|
})
|
|
})
|
|
})
|
|
}
|
|
}
|
|
module.exports = Edit
|