保誠-保戶業務員媒合平台
Tomas
2022-05-19 957a1f10a06fdbb76f1a0ba94fe44126c613fee3
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
103
104
105
// @flow
 
import path from "path";
import debounce from "lodash.debounce";
import requireResolve from "resolve";
 
const nativeRequireResolve = parseFloat(process.versions.node) >= 8.9;
 
export function resolve(
  dirname: string,
  moduleName: string,
  absoluteImports: boolean | string,
): string {
  if (absoluteImports === false) return moduleName;
 
  let basedir = dirname;
  if (typeof absoluteImports === "string") {
    basedir = path.resolve(basedir, absoluteImports);
  }
 
  let modulePackage, moduleNestedPath;
 
  let slash = moduleName.indexOf("/");
  if (moduleName[0] === "@") {
    slash = moduleName.indexOf("/", slash + 1);
  }
 
  if (slash === -1) {
    modulePackage = moduleName;
    moduleNestedPath = "";
  } else {
    modulePackage = moduleName.slice(0, slash);
    moduleNestedPath = moduleName.slice(slash);
  }
 
  try {
    let pkg;
    if (nativeRequireResolve) {
      // $FlowIgnore
      pkg = require.resolve(`${modulePackage}/package.json`, {
        paths: [basedir],
      });
    } else {
      pkg = requireResolve.sync(`${modulePackage}/package.json`, { basedir });
    }
    return path.dirname(pkg) + moduleNestedPath;
  } catch (err) {
    if (err.code !== "MODULE_NOT_FOUND") throw err;
 
    // $FlowIgnore
    throw Object.assign(
      new Error(`Failed to resolve "${moduleName}" relative to "${dirname}"`),
      {
        code: "BABEL_POLYFILL_NOT_FOUND",
        polyfill: moduleName,
        dirname,
      },
    );
  }
}
 
export function has(basedir: string, name: string) {
  try {
    if (nativeRequireResolve) {
      // $FlowIgnore
      require.resolve(name, { paths: [basedir] });
    } else {
      requireResolve.sync(name, { basedir });
    }
    return true;
  } catch {
    return false;
  }
}
 
export function logMissing(missingDeps: Set<string>) {
  if (missingDeps.size === 0) return;
 
  const deps = Array.from(missingDeps)
    .sort()
    .join(" ");
 
  console.warn(
    "\nSome polyfills have been added but are not present in your dependencies.\n" +
      "Please run one of the following commands:\n" +
      `\tnpm install --save ${deps}\n` +
      `\tyarn add ${deps}\n`,
  );
 
  process.exitCode = 1;
}
 
let allMissingDeps = new Set();
 
const laterLogMissingDependencies = debounce(() => {
  logMissing(allMissingDeps);
  allMissingDeps = new Set();
}, 100);
 
export function laterLogMissing(missingDeps: Set<string>) {
  if (missingDeps.size === 0) return;
 
  missingDeps.forEach(name => allMissingDeps.add(name));
  laterLogMissingDependencies();
}