1const LifecycleCmd = require('../lifecycle-cmd.js')
2
3// This ends up calling run-script(['stop', ...args])
4class Stop extends LifecycleCmd {
5  static description = 'Stop a package'
6  static name = 'stop'
7  static params = [
8    'ignore-scripts',
9    'script-shell',
10  ]
11}
12
13module.exports = Stop
14