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

ll.js « lib « npm « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d5a6217da9c7961d3268fd81d317fe50217ce18 (plain)
1
2
3
4
5
6
7
8
9
const { usage, completion } = require('./ls.js')
const npm = require('./npm.js')

const cmd = (args, cb) => {
  npm.config.set('long', true)
  return npm.commands.ls(args, cb)
}

module.exports = Object.assign(cmd, { usage, completion })