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