mirror of
https://github.com/nodejs/node.git
synced 2025-05-16 00:11:20 +00:00

PR-URL: https://github.com/nodejs/node/pull/40865 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
17 lines
476 B
JavaScript
17 lines
476 B
JavaScript
// 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>]']
|
|
|
|
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
|