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

installed-shallow.js « completion « utils « lib - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 686c95e63245e1640af5199deb08fccb17b0ae25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const { promisify } = require('util')
const readdir = promisify(require('readdir-scoped-modules'))

const installedShallow = async (npm, opts) => {
  const names = global => readdir(global ? npm.globalDir : npm.localDir)
  const { conf: { argv: { remain } } } = opts
  if (remain.length > 3) {
    return null
  }

  const { global } = npm.flatOptions
  const locals = global ? [] : await names(false)
  const globals = (await names(true)).map(n => global ? n : `${n} -g`)
  return [...locals, ...globals]
}

module.exports = installedShallow