/usr/share/cagefs-skeleton/lib/node_modules/npm/lib
// 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
.
Edit
..
Edit
arborist-cmd.js
Edit
auth
Edit
base-command.js
Edit
cli.js
Edit
commands
Edit
lifecycle-cmd.js
Edit
npm.js
Edit
package-url-cmd.js
Edit
utils
Edit
workspaces
Edit