chore: deps

This commit is contained in:
iCrawl
2024-02-06 01:53:30 +01:00
parent 3755e66d41
commit ae57d7facb
47 changed files with 4634 additions and 3664 deletions

View File

@@ -63,19 +63,19 @@
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/node": "^18.19.3",
"@types/node": "^18.19.14",
"@types/resolve": "^1.20.6",
"@types/semver": "^7.5.6",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-neon": "^0.1.57",
"eslint-formatter-pretty": "^5.0.0",
"eslint-config-neon": "^0.1.58",
"eslint-formatter-pretty": "^6.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"tsup": "^7.2.0",
"turbo": "^1.11.2"
"prettier": "^3.2.5",
"tsup": "^8.0.1",
"turbo": "^1.12.2"
}
}

View File

@@ -260,6 +260,7 @@ export class ExportAnalyzer {
: undefined;
const resolvedModule: ts.ResolvedModuleFull | undefined = TypeScriptInternals.getResolvedModule(
this._program,
importOrExportDeclaration.getSourceFile(),
moduleSpecifier,
mode,
@@ -856,6 +857,7 @@ export class ExportAnalyzer {
)
: undefined;
const resolvedModule: ts.ResolvedModuleFull | undefined = TypeScriptInternals.getResolvedModule(
this._program,
importOrExportDeclaration.getSourceFile(),
moduleSpecifier,
mode,

View File

@@ -369,7 +369,7 @@ export class Span {
* can make changes to Span.modification for each node.
*/
public forEach(callback: (span: Span) => void): void {
// eslint-disable-next-line n/callback-return, n/no-callback-literal
// eslint-disable-next-line n/callback-return
callback(this);
for (const child of this.children) {
// eslint-disable-next-line unicorn/no-array-for-each

View File

@@ -75,14 +75,19 @@ export class TypeScriptInternals {
* The compiler populates this cache as part of analyzing the source file.
*/
public static getResolvedModule(
program: ts.Program,
sourceFile: ts.SourceFile,
moduleNameText: string,
mode: ts.ModuleKind.CommonJS | ts.ModuleKind.ESNext | undefined,
): ts.ResolvedModuleFull | undefined {
// Compiler internal:
// https://github.com/microsoft/TypeScript/blob/v4.7.2/src/compiler/utilities.ts#L161
return (ts as any).getResolvedModule(sourceFile, moduleNameText, mode);
// https://github.com/microsoft/TypeScript/blob/v5.3.3/src/compiler/types.ts#L4698
const result: ts.ResolvedModuleWithFailedLookupLocations | undefined = (program as any).getResolvedModule(
sourceFile,
moduleNameText,
mode,
);
return result?.resolvedModule;
}
/**

View File

@@ -45,7 +45,7 @@ export class ApiExtractorCommandLine extends CommandLineParser {
console.error(os.EOL + colors.red('ERROR: ' + error.message.trim()));
}
// eslint-disable-next-line no-restricted-globals, n/prefer-global/process
// eslint-disable-next-line no-restricted-globals
process.exitCode = 1;
}
}

View File

@@ -1,4 +1,3 @@
/* eslint-disable n/prefer-global/process */
/* eslint-disable no-restricted-globals */
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.