bot/node_modules/npm/lib/commands/stop.js

13 lines
294 B
JavaScript
Raw Normal View History

2022-02-16 11:32:42 +01: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