@file-services/typescript
Advanced tools
Comparing version 5.3.1 to 5.4.0
@@ -66,3 +66,3 @@ "use strict"; | ||
readDirectory(rootDir, extensions, excludes, includes, depth) { | ||
return typescript_1.default.matchFiles(rootDir, extensions, excludes, includes, caseSensitive, rootDir, depth, getFileSystemEntries, realpath); | ||
return typescript_1.default.matchFiles(rootDir, extensions, excludes, includes, caseSensitive, rootDir, depth, getFileSystemEntries, realpath, directoryExistsSync); | ||
}, | ||
@@ -69,0 +69,0 @@ getDirectories(path) { |
@@ -1,2 +0,2 @@ | ||
export * from './create-host'; | ||
export * from './create-host.js'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -13,3 +13,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__exportStar(require("./create-host"), exports); | ||
__exportStar(require("./create-host.js"), exports); | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@file-services/typescript", | ||
"description": "Helpers for creation of TypeScript hosts", | ||
"version": "5.3.1", | ||
"version": "5.4.0", | ||
"main": "dist/index.js", | ||
@@ -10,3 +10,3 @@ "peerDependencies": { | ||
"dependencies": { | ||
"@file-services/types": "^5.3.1" | ||
"@file-services/types": "^5.4.0" | ||
}, | ||
@@ -13,0 +13,0 @@ "files": [ |
@@ -101,3 +101,4 @@ import ts from 'typescript'; | ||
getFileSystemEntries, | ||
realpath | ||
realpath, | ||
directoryExistsSync | ||
); | ||
@@ -104,0 +105,0 @@ }, |
@@ -1,1 +0,1 @@ | ||
export * from './create-host'; | ||
export * from './create-host.js'; |
@@ -7,5 +7,5 @@ import ts from 'typescript'; | ||
path: string, | ||
extensions: ReadonlyArray<string> | undefined, | ||
excludes: ReadonlyArray<string> | undefined, | ||
includes: ReadonlyArray<string> | undefined, | ||
extensions: readonly string[] | undefined, | ||
excludes: readonly string[] | undefined, | ||
includes: readonly string[] | undefined, | ||
useCaseSensitiveFileNames: boolean, | ||
@@ -15,3 +15,4 @@ currentDirectory: string, | ||
getFileSystemEntries: (path: string) => FileSystemEntries, | ||
realpath: (path: string) => string | ||
realpath: (path: string) => string, | ||
directoryExists: (path: string) => boolean | ||
): string[]; | ||
@@ -18,0 +19,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
23831
385
Updated@file-services/types@^5.4.0