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: 1c9b8ef5acb0f7df4f914947bfe69b9d56d1cd3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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