Hacked By AnonymousFox

Current Path : /proc/thread-self/root/opt/alt/alt-nodejs22/root/usr/lib/node_modules/npm/lib/
Upload File :
Current File : //proc/thread-self/root/opt/alt/alt-nodejs22/root/usr/lib/node_modules/npm/lib/lifecycle-cmd.js

const BaseCommand = require('./base-cmd.js')

// The implementation of commands that are just "run a script"
// 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-script', [this.constructor.name, ...args])
  }

  async execWorkspaces (args) {
    return this.npm.exec('run-script', [this.constructor.name, ...args])
  }
}

module.exports = LifecycleCmd

Hacked By AnonymousFox1.0, Coded By AnonymousFox