node/deps/npm/lib/lifecycle-cmd.js
npm CLI robot 1e595994eb
deps: upgrade npm to 11.11.1
PR-URL: https://github.com/nodejs/node/pull/62216
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2026-03-16 21:59:47 +00:00

20 lines
542 B
JavaScript

const BaseCommand = require('./base-cmd.js')
// The implementation of commands that are just "run a script"
// e.g. 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