• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1const LS = require('./ls.js')
2
3class LL extends LS {
4  static name = 'll'
5  static usage = ['[[<@scope>/]<pkg> ...]']
6
7  async exec (args) {
8    this.npm.config.set('long', true)
9    return super.exec(args)
10  }
11}
12
13module.exports = LL
14