stop.js 288 B

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