ll.js 404 B

1234567891011121314151617181920
  1. const LS = require('./ls.js')
  2. class LL extends LS {
  3. /* istanbul ignore next - see test/lib/load-all-commands.js */
  4. static get name () {
  5. return 'll'
  6. }
  7. /* istanbul ignore next - see test/lib/load-all-commands.js */
  8. static get usage () {
  9. return ['[[<@scope>/]<pkg> ...]']
  10. }
  11. exec (args, cb) {
  12. this.npm.config.set('long', true)
  13. super.exec(args, cb)
  14. }
  15. }
  16. module.exports = LL