npm
Version:
a package manager for JavaScript
16 lines (13 loc) • 423 B
JavaScript
const LifecycleCmd = require('./utils/lifecycle-cmd.js')
// This ends up calling run-script(['restart', ...args])
class Restart extends LifecycleCmd {
/* istanbul ignore next - see test/lib/load-all-commands.js */
static get description () {
return 'Restart a package'
}
/* istanbul ignore next - see test/lib/load-all-commands.js */
static get name () {
return 'restart'
}
}
module.exports = Restart