summaryrefslogtreecommitdiff
path: root/deps/npm/lib/utils/completion/installed-shallow.js
blob: c9c680e7dd293ab354a1624eb19fc20e96cd705a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const npm = require('../../npm.js')
const { promisify } = require('util')
const readdir = promisify(require('readdir-scoped-modules'))

const names = global => readdir(global ? npm.globalDir : npm.localDir)

const installedShallow = async (opts) => {
  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