Skip to content

Commit

Permalink
Merge pull request #17160 from snitin315/update-enhanced-resolve
Browse files Browse the repository at this point in the history
feat: update enhanced-resolve to v5.14.0
  • Loading branch information
TheLarkInn committed May 10, 2023
2 parents ba56e05 + 57ecbab commit f5deb28
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion lib/FileSystemInfo.js
Expand Up @@ -1464,7 +1464,7 @@ class FileSystemInfo {
push({
type: RBDT_DIRECTORY,
context: undefined,
path: resultPath,
path: /** @type {string} */ (resultPath),
expected: undefined,
issuer: job
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -14,7 +14,7 @@
"acorn-import-assertions": "^1.7.6",
"browserslist": "^4.14.5",
"chrome-trace-event": "^1.0.2",
"enhanced-resolve": "^5.13.0",
"enhanced-resolve": "^5.14.0",
"es-module-lexer": "^1.2.1",
"eslint-scope": "5.1.1",
"events": "^3.2.0",
Expand Down
19 changes: 10 additions & 9 deletions types.d.ts
Expand Up @@ -3506,6 +3506,7 @@ declare class EnvironmentPlugin {
*/
apply(compiler: Compiler): void;
}
type ErrorWithDetail = Error & { details?: string };
declare interface Etag {
toString: () => string;
}
Expand Down Expand Up @@ -8023,19 +8024,19 @@ declare interface NormalModuleLoaderContext<OptionsType> {
context: string,
request: string,
callback: (
arg0: null | Error,
arg1?: string | false,
arg2?: ResolveRequest
err: null | ErrorWithDetail,
res?: string | false,
req?: ResolveRequest
) => void
): any;
getResolve(options?: ResolveOptionsWithDependencyType): {
(
context: string,
request: string,
callback: (
arg0: null | Error,
arg1?: string | false,
arg2?: ResolveRequest
err: null | ErrorWithDetail,
res?: string | false,
req?: ResolveRequest
) => void
): void;
(context: string, request: string): Promise<string>;
Expand Down Expand Up @@ -10134,9 +10135,9 @@ declare abstract class Resolver {
request: string,
resolveContext: ResolveContext,
callback: (
arg0: null | Error,
arg1?: string | false,
arg2?: ResolveRequest
err: null | ErrorWithDetail,
res?: string | false,
req?: ResolveRequest
) => void
): void;
doResolve(
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Expand Up @@ -2511,10 +2511,10 @@ emojis-list@^3.0.0:
resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==

enhanced-resolve@^5.0.0, enhanced-resolve@^5.13.0:
version "5.13.0"
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.13.0.tgz#26d1ecc448c02de997133217b5c1053f34a0a275"
integrity sha512-eyV8f0y1+bzyfh8xAwW/WTSZpLbjhqc4ne9eGSH4Zo2ejdyiNG9pU6mf9DG8a7+Auk6MFTlNOT4Y2y/9k8GKVg==
enhanced-resolve@^5.0.0, enhanced-resolve@^5.14.0:
version "5.14.0"
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.14.0.tgz#0b6c676c8a3266c99fa281e4433a706f5c0c61c4"
integrity sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw==
dependencies:
graceful-fs "^4.2.4"
tapable "^2.2.0"
Expand Down

0 comments on commit f5deb28

Please sign in to comment.