执行过npm install命令的vue-element-admin源码
康凯
2022-05-20 aa4c235a8ca67ea8b731f90c951a465e92c0a865
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
'use strict';
 
Object.defineProperty(exports, "__esModule", {
  value: true
});
 
var _fs = require('fs');
 
var _path = require('path');
 
var _istanbulLibInstrument = require('istanbul-lib-instrument');
 
var _babelPluginSyntaxObjectRestSpread = require('babel-plugin-syntax-object-rest-spread');
 
var _babelPluginSyntaxObjectRestSpread2 = _interopRequireDefault(_babelPluginSyntaxObjectRestSpread);
 
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
 
var testExclude = require('test-exclude');
var findUp = require('find-up');
 
function getRealpath(n) {
  try {
    return (0, _fs.realpathSync)(n) || n;
  } catch (e) {
    return n;
  }
}
 
function makeShouldSkip() {
  var exclude = void 0;
  return function shouldSkip(file, opts) {
    if (!exclude) {
      var cwd = getRealpath(process.env.NYC_CWD || process.cwd());
      var nycConfig = process.env.NYC_CONFIG ? JSON.parse(process.env.NYC_CONFIG) : {};
 
      var config = {};
      if (Object.keys(opts).length > 0) {
        // explicitly configuring options in babel
        // takes precedence.
        config = opts;
      } else if (nycConfig.include || nycConfig.exclude) {
        // nyc was configured in a parent process (keep these settings).
        config = {
          include: nycConfig.include,
          exclude: nycConfig.exclude
        };
      } else {
        // fallback to loading config from key in package.json.
        config = {
          configKey: 'nyc',
          configPath: (0, _path.dirname)(findUp.sync('package.json', { cwd: cwd }))
        };
      }
 
      exclude = testExclude(Object.assign({ cwd: cwd }, config));
    }
 
    return !exclude.shouldInstrument(file);
  };
}
 
function makeVisitor(_ref) {
  var t = _ref.types;
 
  var shouldSkip = makeShouldSkip();
  return {
    inherits: _babelPluginSyntaxObjectRestSpread2.default,
    visitor: {
      Program: {
        enter: function enter(path) {
          this.__dv__ = null;
          var realPath = getRealpath(this.file.opts.filename);
          if (shouldSkip(realPath, this.opts)) {
            return;
          }
          var inputSourceMap = this.opts.inputSourceMap;
 
          if (this.opts.useInlineSourceMaps !== false) {
            inputSourceMap = inputSourceMap || this.file.opts.inputSourceMap;
          }
          this.__dv__ = (0, _istanbulLibInstrument.programVisitor)(t, realPath, {
            coverageVariable: '__coverage__',
            inputSourceMap: inputSourceMap
          });
          this.__dv__.enter(path);
        },
        exit: function exit(path) {
          if (!this.__dv__) {
            return;
          }
          var result = this.__dv__.exit(path);
          if (this.opts.onCover) {
            this.opts.onCover(getRealpath(this.file.opts.filename), result.fileCoverage);
          }
        }
      }
    }
  };
}
 
exports.default = makeVisitor;