X7ROOT File Manager
Current Path:
/opt/alt/alt-nodejs19/root/usr/lib/node_modules/npm/lib
opt
/
alt
/
alt-nodejs19
/
root
/
usr
/
lib
/
node_modules
/
npm
/
lib
/
ðŸ“
..
📄
arborist-cmd.js
(1.59 KB)
📄
base-command.js
(3.86 KB)
📄
cli.js
(4.21 KB)
ðŸ“
commands
📄
lifecycle-cmd.js
(554 B)
📄
npm.js
(14.02 KB)
📄
package-url-cmd.js
(1.95 KB)
ðŸ“
utils
ðŸ“
workspaces
Editing: lifecycle-cmd.js
// 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 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
Upload File
Create Folder