/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/npm/lib/lifecycle-cmd.js
20 строк
542 B
npm CLI robot
deps: upgrade npm to 11.11.1
17 мар 2026, 00:59
Не верифицирован
17 мар 2026, 00:59
1e59599
Код
Авторство
О чём код?
const BaseCommand = require('./base-cmd.js') // The implementation of commands that are just "run a script" // e.g. 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', [this.constructor.name, ...args]) } async execWorkspaces (args) { return this.npm.exec('run', [this.constructor.name, ...args]) } } module.exports = LifecycleCmd