Installing dependencies.
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
// The implementation of commands that are just "run a script"
|
||||
// restart, start, stop, test
|
||||
|
||||
const BaseCommand = require('./base-command.js')
|
||||
class LifecycleCmd extends BaseCommand {
|
||||
static usage = ['[-- <args>]']
|
||||
static isShellout = true
|
||||
|
||||
async exec (args, cb) {
|
||||
return this.npm.exec('run-script', [this.constructor.name, ...args])
|
||||
}
|
||||
|
||||
async execWorkspaces (args, filters, cb) {
|
||||
return this.npm.exec('run-script', [this.constructor.name, ...args])
|
||||
}
|
||||
}
|
||||
module.exports = LifecycleCmd
|
||||
Reference in New Issue
Block a user