2021-11-04 20:42:47 +00:00
|
|
|
const LifecycleCmd = require('../lifecycle-cmd.js')
|
2021-03-04 17:40:28 -05:00
|
|
|
|
|
|
|
// This ends up calling run-script(['start', ...args])
|
|
|
|
class Start extends LifecycleCmd {
|
2021-11-18 20:58:02 +00:00
|
|
|
static description = 'Start a package'
|
|
|
|
static name = 'start'
|
|
|
|
static params = [
|
|
|
|
'ignore-scripts',
|
|
|
|
'script-shell',
|
|
|
|
]
|
2021-03-04 17:40:28 -05:00
|
|
|
}
|
2023-01-16 22:38:23 -05:00
|
|
|
|
2021-03-04 17:40:28 -05:00
|
|
|
module.exports = Start
|