14 lines
295 B
JavaScript
Raw Permalink Normal View History

2025-08-23 11:41:14 +02:00
const LifecycleCmd = require('../lifecycle-cmd.js')
// This ends up calling run-script(['stop', ...args])
class Stop extends LifecycleCmd {
static description = 'Stop a package'
static name = 'stop'
static params = [
'ignore-scripts',
'script-shell',
]
}
module.exports = Stop