/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/npm/lib/commands/ll.js
13 строк
234 B
npm team
deps: upgrade npm to 8.1.4
22 ноя 2021, 11:37
Не верифицирован
22 ноя 2021, 11:37
8a03482
Код
Авторство
О чём код?
const LS = require('./ls.js') class LL extends LS { static name = 'll' static usage = ['[[<@scope>/]<pkg> ...]'] async exec (args) { this.npm.config.set('long', true) return super.exec(args) } } module.exports = LL