ll.js 234 B

12345678910111213
  1. const LS = require('./ls.js')
  2. class LL extends LS {
  3. static name = 'll'
  4. static usage = ['[[<@scope>/]<pkg> ...]']
  5. async exec (args) {
  6. this.npm.config.set('long', true)
  7. return super.exec(args)
  8. }
  9. }
  10. module.exports = LL