This commit is contained in:
Yamozha
2021-04-02 02:24:13 +03:00
parent c23950b545
commit 7256d79e2c
31493 changed files with 3036630 additions and 0 deletions

21
node_modules/jest-resolve-dependencies/LICENSE generated vendored Normal file
View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) Facebook, Inc. and its affiliates.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@ -0,0 +1,30 @@
/**
* 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.
*/
import type { Config } from '@jest/types';
import type { FS as HasteFS } from 'jest-haste-map';
import Resolver = require('jest-resolve');
import { SnapshotResolver } from 'jest-snapshot';
declare namespace DependencyResolver {
type ResolvedModule = {
file: Config.Path;
dependencies: Array<Config.Path>;
};
}
/**
* DependencyResolver is used to resolve the direct dependencies of a module or
* to retrieve a list of all transitive inverse dependencies.
*/
declare class DependencyResolver {
private _hasteFS;
private _resolver;
private _snapshotResolver;
constructor(resolver: Resolver, hasteFS: HasteFS, snapshotResolver: SnapshotResolver);
resolve(file: Config.Path, options?: Resolver.ResolveModuleConfig): Array<Config.Path>;
resolveInverseModuleMap(paths: Set<Config.Path>, filter: (file: Config.Path) => boolean, options?: Resolver.ResolveModuleConfig): Array<DependencyResolver.ResolvedModule>;
resolveInverse(paths: Set<Config.Path>, filter: (file: Config.Path) => boolean, options?: Resolver.ResolveModuleConfig): Array<Config.Path>;
}
export = DependencyResolver;

172
node_modules/jest-resolve-dependencies/build/index.js generated vendored Normal file
View File

@ -0,0 +1,172 @@
'use strict';
function _jestResolve() {
const data = _interopRequireDefault(require('jest-resolve'));
_jestResolve = function () {
return data;
};
return data;
}
function _jestSnapshot() {
const data = require('jest-snapshot');
_jestSnapshot = function () {
return data;
};
return data;
}
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {default: obj};
}
function _defineProperty(obj, key, value) {
if (key in obj) {
Object.defineProperty(obj, key, {
value: value,
enumerable: true,
configurable: true,
writable: true
});
} else {
obj[key] = value;
}
return obj;
}
/**
* DependencyResolver is used to resolve the direct dependencies of a module or
* to retrieve a list of all transitive inverse dependencies.
*/
/* eslint-disable-next-line no-redeclare */
class DependencyResolver {
constructor(resolver, hasteFS, snapshotResolver) {
_defineProperty(this, '_hasteFS', void 0);
_defineProperty(this, '_resolver', void 0);
_defineProperty(this, '_snapshotResolver', void 0);
this._resolver = resolver;
this._hasteFS = hasteFS;
this._snapshotResolver = snapshotResolver;
}
resolve(file, options) {
const dependencies = this._hasteFS.getDependencies(file);
if (!dependencies) {
return [];
}
return dependencies.reduce((acc, dependency) => {
if (this._resolver.isCoreModule(dependency)) {
return acc;
}
let resolvedDependency;
try {
resolvedDependency = this._resolver.resolveModule(
file,
dependency,
options
);
} catch (_unused) {
try {
resolvedDependency = this._resolver.getMockModule(file, dependency);
} catch (_unused2) {
// leave resolvedDependency as undefined if nothing can be found
}
}
if (resolvedDependency) {
acc.push(resolvedDependency);
}
return acc;
}, []);
}
resolveInverseModuleMap(paths, filter, options) {
if (!paths.size) {
return [];
}
const collectModules = (related, moduleMap, changed) => {
const visitedModules = new Set();
const result = [];
while (changed.size) {
changed = new Set(
moduleMap.reduce((acc, module) => {
if (
visitedModules.has(module.file) ||
!module.dependencies.some(dep => changed.has(dep))
) {
return acc;
}
const file = module.file;
if (filter(file)) {
result.push(module);
related.delete(file);
}
visitedModules.add(file);
acc.push(file);
return acc;
}, [])
);
}
return result.concat(
Array.from(related).map(file => ({
dependencies: [],
file
}))
);
};
const relatedPaths = new Set();
const changed = new Set();
for (const path of paths) {
if (this._hasteFS.exists(path)) {
const modulePath = (0, _jestSnapshot().isSnapshotPath)(path)
? this._snapshotResolver.resolveTestPath(path)
: path;
changed.add(modulePath);
if (filter(modulePath)) {
relatedPaths.add(modulePath);
}
}
}
const modules = [];
for (const file of this._hasteFS.getAbsoluteFileIterator()) {
modules.push({
dependencies: this.resolve(file, options),
file
});
}
return collectModules(relatedPaths, modules, changed);
}
resolveInverse(paths, filter, options) {
return this.resolveInverseModuleMap(paths, filter, options).map(
module => module.file
);
}
}
module.exports = DependencyResolver;

View File

@ -0,0 +1,30 @@
/**
* 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.
*/
import { Config } from '@jest/types';
import { FS as HasteFS } from 'jest-haste-map';
import Resolver = require('jest-resolve');
import { SnapshotResolver } from 'jest-snapshot';
declare namespace DependencyResolver {
type ResolvedModule = {
file: Config.Path;
dependencies: Array<Config.Path>;
};
}
/**
* DependencyResolver is used to resolve the direct dependencies of a module or
* to retrieve a list of all transitive inverse dependencies.
*/
declare class DependencyResolver {
private _hasteFS;
private _resolver;
private _snapshotResolver;
constructor(resolver: Resolver, hasteFS: HasteFS, snapshotResolver: SnapshotResolver);
resolve(file: Config.Path, options?: Resolver.ResolveModuleConfig): Array<Config.Path>;
resolveInverseModuleMap(paths: Set<Config.Path>, filter: (file: Config.Path) => boolean, options?: Resolver.ResolveModuleConfig): Array<DependencyResolver.ResolvedModule>;
resolveInverse(paths: Set<Config.Path>, filter: (file: Config.Path) => boolean, options?: Resolver.ResolveModuleConfig): Array<Config.Path>;
}
export = DependencyResolver;

36
node_modules/jest-resolve-dependencies/package.json generated vendored Normal file
View File

@ -0,0 +1,36 @@
{
"name": "jest-resolve-dependencies",
"version": "25.5.4",
"repository": {
"type": "git",
"url": "https://github.com/facebook/jest.git",
"directory": "packages/jest-resolve-dependencies"
},
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts",
"typesVersions": {
"<3.8": {
"build/*": [
"build/ts3.4/*"
]
}
},
"dependencies": {
"@jest/types": "^25.5.0",
"jest-regex-util": "^25.2.6",
"jest-snapshot": "^25.5.1"
},
"devDependencies": {
"jest-haste-map": "^25.5.1",
"jest-resolve": "^25.5.1",
"jest-runtime": "^25.5.4"
},
"engines": {
"node": ">= 8.3"
},
"publishConfig": {
"access": "public"
},
"gitHead": "389d13724bbf6bb64dcde9700a6ecea3333942db"
}