📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-06-27 23:05:59
📂
/ (Root)
/
opt
/
alt
/
alt-nodejs16
/
root
/
usr
/
lib
/
node_modules
/
npm
/
lib
📍 /opt/alt/alt-nodejs16/root/usr/lib/node_modules/npm/lib
🔄 Refresh
✏️
Editing: lifecycle-cmd.js
Read Only
// 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
💾 Save Changes
❌ Cancel