File "lifecycle-cmd.js"
Full Path: /home/attunedd/public_html/byp/izo/con7ext_sym404/rintoar.txt/opt/alt/alt-nodejs16/root/usr/lib/node_modules/npm/lib/lifecycle-cmd.js
File size: 503 bytes
MIME-type: text/plain
Charset: utf-8
// 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