You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
537 B
21 lines
537 B
const BaseCommand = require('./base-cmd.js')
|
|
|
|
// The implementation of commands that are just "run a script"
|
|
// restart, start, stop, test
|
|
class LifecycleCmd extends BaseCommand {
|
|
static usage = ['[-- <args>]']
|
|
static isShellout = true
|
|
static workspaces = true
|
|
static ignoreImplicitWorkspace = false
|
|
|
|
async exec (args) {
|
|
return this.npm.exec('run', [this.constructor.name, ...args])
|
|
}
|
|
|
|
async execWorkspaces (args) {
|
|
return this.npm.exec('run', [this.constructor.name, ...args])
|
|
}
|
|
}
|
|
|
|
module.exports = LifecycleCmd
|