✏️ 正在编辑: lifecycle-cmd.js
路径:
/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
💾 保存文件
← 返回文件管理器