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