Blame view

node_modules/cosmiconfig/lib/loadDefinedFile.js 1.47 KB
ce4c83ff   wxy   初始提交
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
  'use strict';
  
  var yaml = require('js-yaml');
  var requireFromString = require('require-from-string');
  var readFile = require('./readFile');
  var parseJson = require('./parseJson');
  
  module.exports = function (filepath, options) {
    return readFile(filepath, { throwNotFound: true }).then(function (content) {
      var parsedConfig = (function () {
        switch (options.format) {
          case 'json':
            return parseJson(content, filepath);
          case 'yaml':
            return yaml.safeLoad(content, {
              filename: filepath,
            });
          case 'js':
            return requireFromString(content, filepath);
          default:
            return tryAllParsing(content, filepath);
        }
      })();
  
      if (!parsedConfig) {
        throw new Error(
          'Failed to parse "' + filepath + '" as JSON, JS, or YAML.'
        );
      }
  
      return {
        config: parsedConfig,
        filepath: filepath,
      };
    });
  };
  
  function tryAllParsing(content, filepath) {
    return tryYaml(content, filepath, function () {
      return tryRequire(content, filepath, function () {
        return null;
      });
    });
  }
  
  function tryYaml(content, filepath, cb) {
    try {
      var result = yaml.safeLoad(content, {
        filename: filepath,
      });
      if (typeof result === 'string') {
        return cb();
      }
      return result;
    } catch (e) {
      return cb();
    }
  }
  
  function tryRequire(content, filepath, cb) {
    try {
      return requireFromString(content, filepath);
    } catch (e) {
      return cb();
    }
  }