Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ll.js « lib - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/ll.js
blob: 3e3428a7ff5ebc2e0b284408004a9223c8e0c22e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
const LS = require('./ls.js')

class LL extends LS {
  /* istanbul ignore next - see test/lib/load-all-commands.js */
  static get name () {
    return 'll'
  }

  /* istanbul ignore next - see test/lib/load-all-commands.js */
  static get usage () {
    return ['[[<@scope>/]<pkg> ...]']
  }

  exec (args, cb) {
    this.npm.config.set('long', true)
    super.exec(args, cb)
  }
}

module.exports = LL