2021-03-04 17:40:28 -05:00
|
|
|
const LifecycleCmd = require('./utils/lifecycle-cmd.js')
|
|
|
|
|
|
|
|
// This ends up calling run-script(['start', ...args])
|
|
|
|
class Start extends LifecycleCmd {
|
2021-03-11 17:54:23 -05:00
|
|
|
/* istanbul ignore next - see test/lib/load-all-commands.js */
|
|
|
|
static get name () {
|
|
|
|
return 'start'
|
2021-03-04 17:40:28 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Start
|