ken_nogi/NodeJS/node/node_modules/npm/lib/commands/restart.js
Kenichiro NOGI 88a402ce0f up
2026-07-10 18:13:30 +09:00

14 lines
303 B
JavaScript

const LifecycleCmd = require('../lifecycle-cmd.js')
// This ends up calling run(['restart', ...args])
class Restart extends LifecycleCmd {
static description = 'Restart a package'
static name = 'restart'
static params = [
'ignore-scripts',
'script-shell',
]
}
module.exports = Restart