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

file-completion.js « completion « utils « lib - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6ce2f83467d012030a87ad15fa444f56886a330e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module.exports = fileCompletion

var mkdir = require("mkdirp")
  , path = require("path")
  , glob = require("glob")

function fileCompletion (root, req, depth, cb) {
  if (typeof cb !== "function") cb = depth, depth = Infinity
  mkdir(root, function (er) {
    if (er) return cb(er)

    // can be either exactly the req, or a descendent
    var pattern = root + "/{" + req + "," + req + "/**/*}"
      , opts = { mark: true, dot: true, maxDepth: depth }
    glob(pattern, opts, function (er, files) {
      if (er) return cb(er)
      return cb(null, (files || []).map(function (f) {
        var tail = f.substr(root.length + 1).replace(/^\//, "")
        return path.join(req, tail)
      }))
    })
  })
}