mirror of
https://github.com/azure/login.git
synced 2026-06-07 22:47:13 +00:00
* Bump lodash from 4.17.15 to 4.17.19 (#52) Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * Bump @actions/core from 1.1.3 to 1.2.6 (#60) Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.1.3 to 1.2.6. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * updating node_nodules * updated package-lock Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
58 lines
No EOL
2.4 KiB
TypeScript
58 lines
No EOL
2.4 KiB
TypeScript
/**
|
|
* 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 { ModuleMap } from 'jest-haste-map';
|
|
import type { ResolverConfig } from './types';
|
|
import ModuleNotFoundError from './ModuleNotFoundError';
|
|
declare type FindNodeModuleConfig = {
|
|
basedir: Config.Path;
|
|
browser?: boolean;
|
|
extensions?: Array<string>;
|
|
moduleDirectory?: Array<string>;
|
|
paths?: Array<Config.Path>;
|
|
resolver?: Config.Path | null;
|
|
rootDir?: Config.Path;
|
|
throwIfNotFound?: boolean;
|
|
};
|
|
declare type BooleanObject = Record<string, boolean>;
|
|
declare namespace Resolver {
|
|
type ResolveModuleConfig = {
|
|
skipNodeResolution?: boolean;
|
|
paths?: Array<Config.Path>;
|
|
};
|
|
}
|
|
declare class Resolver {
|
|
private readonly _options;
|
|
private readonly _moduleMap;
|
|
private readonly _moduleIDCache;
|
|
private readonly _moduleNameCache;
|
|
private readonly _modulePathCache;
|
|
private readonly _supportsNativePlatform;
|
|
constructor(moduleMap: ModuleMap, options: ResolverConfig);
|
|
static ModuleNotFoundError: typeof ModuleNotFoundError;
|
|
static tryCastModuleNotFoundError(error: unknown): ModuleNotFoundError | null;
|
|
static clearDefaultResolverCache(): void;
|
|
static findNodeModule(path: Config.Path, options: FindNodeModuleConfig): Config.Path | null;
|
|
resolveModuleFromDirIfExists(dirname: Config.Path, moduleName: string, options?: Resolver.ResolveModuleConfig): Config.Path | null;
|
|
resolveModule(from: Config.Path, moduleName: string, options?: Resolver.ResolveModuleConfig): Config.Path;
|
|
private _isAliasModule;
|
|
isCoreModule(moduleName: string): boolean;
|
|
getModule(name: string): Config.Path | null;
|
|
getModulePath(from: Config.Path, moduleName: string): Config.Path;
|
|
getPackage(name: string): Config.Path | null;
|
|
getMockModule(from: Config.Path, name: string): Config.Path | null;
|
|
getModulePaths(from: Config.Path): Array<Config.Path>;
|
|
getModuleID(virtualMocks: BooleanObject, from: Config.Path, _moduleName?: string): string;
|
|
private _getModuleType;
|
|
private _getAbsolutePath;
|
|
private _getMockPath;
|
|
private _getVirtualMockPath;
|
|
private _isModuleResolved;
|
|
resolveStubModuleName(from: Config.Path, moduleName: string): Config.Path | null;
|
|
}
|
|
export = Resolver;
|
|
//# sourceMappingURL=index.d.ts.map
|