node/deps/npm/lib/lifecycle-cmd.js
npm team 8a03482cf1
deps: upgrade npm to 8.1.4
PR-URL: https://github.com/nodejs/node/pull/40865
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
2021-11-22 09:37:01 +01:00

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