Blame view

node_modules/bower/lib/commands/help.js 949 Bytes
2dda2e10   Administrator   generator ignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  var Q = require('q');
  var path = require('path');
  var fs = require('../util/fs');
  var createError = require('../util/createError');
  
  function help(logger, name, config) {
      var json;
  
      if (name) {
          json = path.resolve(__dirname, '../templates/json/help-' + name.replace(/\s+/g, '/') + '.json');
      } else {
          json = path.resolve(__dirname, '../templates/json/help.json');
      }
  
      return Q.promise(function (resolve) {
          fs.exists(json, resolve);
      })
      .then(function (exists) {
          if (!exists) {
              throw createError('Unknown command: ' + name, 'EUNKNOWNCMD', {
                  command: name
              });
          }
  
          return require(json);
      });
  }
  
  // -------------------
  
  help.readOptions = function (argv) {
      var cli = require('../util/cli');
      var options = cli.readOptions(argv);
      var name = options.argv.remain.slice(1).join(' ');
  
      return [name];
  };
  
  module.exports = help;