|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- 'use strict';
-
- Object.defineProperty(exports, '__esModule', {
- value: true
- });
- exports.default = defaultResolver;
- exports.clearDefaultResolverCache = clearDefaultResolverCache;
-
- function fs() {
- const data = _interopRequireWildcard(require('graceful-fs'));
-
- fs = function () {
- return data;
- };
-
- return data;
- }
-
- function _jestPnpResolver() {
- const data = _interopRequireDefault(require('jest-pnp-resolver'));
-
- _jestPnpResolver = function () {
- return data;
- };
-
- return data;
- }
-
- function _resolve() {
- const data = require('resolve');
-
- _resolve = function () {
- return data;
- };
-
- return data;
- }
-
- function _jestUtil() {
- const data = require('jest-util');
-
- _jestUtil = function () {
- return data;
- };
-
- return data;
- }
-
- function _interopRequireDefault(obj) {
- return obj && obj.__esModule ? obj : {default: obj};
- }
-
- function _getRequireWildcardCache(nodeInterop) {
- if (typeof WeakMap !== 'function') return null;
- var cacheBabelInterop = new WeakMap();
- var cacheNodeInterop = new WeakMap();
- return (_getRequireWildcardCache = function (nodeInterop) {
- return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
- })(nodeInterop);
- }
-
- function _interopRequireWildcard(obj, nodeInterop) {
- if (!nodeInterop && obj && obj.__esModule) {
- return obj;
- }
- if (obj === null || (typeof obj !== 'object' && typeof obj !== 'function')) {
- return {default: obj};
- }
- var cache = _getRequireWildcardCache(nodeInterop);
- if (cache && cache.has(obj)) {
- return cache.get(obj);
- }
- var newObj = {};
- var hasPropertyDescriptor =
- Object.defineProperty && Object.getOwnPropertyDescriptor;
- for (var key in obj) {
- if (key !== 'default' && Object.prototype.hasOwnProperty.call(obj, key)) {
- var desc = hasPropertyDescriptor
- ? Object.getOwnPropertyDescriptor(obj, key)
- : null;
- if (desc && (desc.get || desc.set)) {
- Object.defineProperty(newObj, key, desc);
- } else {
- newObj[key] = obj[key];
- }
- }
- }
- newObj.default = obj;
- if (cache) {
- cache.set(obj, newObj);
- }
- return newObj;
- }
-
- /**
- * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- */
- function defaultResolver(path, options) {
- // Yarn 2 adds support to `resolve` automatically so the pnpResolver is only
- // needed for Yarn 1 which implements version 1 of the pnp spec
- if (process.versions.pnp === '1') {
- return (0, _jestPnpResolver().default)(path, options);
- }
-
- const result = (0, _resolve().sync)(path, {
- ...options,
- isDirectory,
- isFile,
- preserveSymlinks: false,
- readPackageSync,
- realpathSync
- }); // Dereference symlinks to ensure we don't create a separate
- // module instance depending on how it was referenced.
-
- return realpathSync(result);
- }
-
- function clearDefaultResolverCache() {
- checkedPaths.clear();
- checkedRealpathPaths.clear();
- packageContents.clear();
- }
-
- var IPathType;
-
- (function (IPathType) {
- IPathType[(IPathType['FILE'] = 1)] = 'FILE';
- IPathType[(IPathType['DIRECTORY'] = 2)] = 'DIRECTORY';
- IPathType[(IPathType['OTHER'] = 3)] = 'OTHER';
- })(IPathType || (IPathType = {}));
-
- const checkedPaths = new Map();
-
- function statSyncCached(path) {
- const result = checkedPaths.get(path);
-
- if (result !== undefined) {
- return result;
- }
-
- let stat;
-
- try {
- stat = fs().statSync(path);
- } catch (e) {
- if (!(e && (e.code === 'ENOENT' || e.code === 'ENOTDIR'))) {
- throw e;
- }
- }
-
- if (stat) {
- if (stat.isFile() || stat.isFIFO()) {
- checkedPaths.set(path, IPathType.FILE);
- return IPathType.FILE;
- } else if (stat.isDirectory()) {
- checkedPaths.set(path, IPathType.DIRECTORY);
- return IPathType.DIRECTORY;
- }
- }
-
- checkedPaths.set(path, IPathType.OTHER);
- return IPathType.OTHER;
- }
-
- const checkedRealpathPaths = new Map();
-
- function realpathCached(path) {
- let result = checkedRealpathPaths.get(path);
-
- if (result !== undefined) {
- return result;
- }
-
- result = (0, _jestUtil().tryRealpath)(path);
- checkedRealpathPaths.set(path, result);
-
- if (path !== result) {
- // also cache the result in case it's ever referenced directly - no reason to `realpath` that as well
- checkedRealpathPaths.set(result, result);
- }
-
- return result;
- }
-
- const packageContents = new Map();
-
- function readPackageCached(path) {
- let result = packageContents.get(path);
-
- if (result !== undefined) {
- return result;
- }
-
- result = JSON.parse(fs().readFileSync(path, 'utf8'));
- packageContents.set(path, result);
- return result;
- }
- /*
- * helper functions
- */
-
- function isFile(file) {
- return statSyncCached(file) === IPathType.FILE;
- }
-
- function isDirectory(dir) {
- return statSyncCached(dir) === IPathType.DIRECTORY;
- }
-
- function realpathSync(file) {
- return realpathCached(file);
- }
-
- function readPackageSync(_, file) {
- return readPackageCached(file);
- }
|