cspell-io 9.1.3 → 9.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -2
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -9,7 +9,6 @@ import { ServiceBus } from "@cspell/cspell-service-bus";
|
|
|
9
9
|
declare function toArray<T>(asyncIterable: AsyncIterable<T> | Iterable<T> | Iterable<Promise<T>>): Promise<T[]>;
|
|
10
10
|
//#endregion
|
|
11
11
|
//#region src/models/BufferEncoding.d.ts
|
|
12
|
-
// eslint-disable-next-line unicorn/text-encoding-identifier-case
|
|
13
12
|
type TextEncoding = "utf-8" | "utf8" | "utf16le" | "utf16be" | "utf-16le" | "utf-16be";
|
|
14
13
|
type BufferEncoding = "base64" | "base64url" | "hex" | TextEncoding;
|
|
15
14
|
//#endregion
|
|
@@ -518,5 +517,5 @@ interface RedirectOptions {
|
|
|
518
517
|
*/
|
|
519
518
|
declare function createRedirectProvider(name: string, publicRoot: URL, privateRoot: URL, options?: RedirectOptions): VFileSystemProvider;
|
|
520
519
|
//#endregion
|
|
521
|
-
export { BufferEncoding, CFileReference, CFileResource, CSpellIO, CSpellIONode, FSCapabilityFlags, Stats, TextEncoding, VFileSystem, VFileSystemCore, VFileSystemProvider, FileType as VFileType, VFindEntryType, VFindUpPredicate, VFindUpURLOptions, VProviderFileSystem, VfsDirEntry, VfsStat, VirtualFS, toArray as asyncIterableToArray, compareStats, createRedirectProvider, fromFileResource as createTextFileResource, createVirtualFS, encodeDataUrl, getDefaultCSpellIO, getDefaultVirtualFs, getStat, getStatSync, isFileURL, isUrlLike, readFileText, readFileTextSync, renameFileReference, renameFileResource, toDataUrl, toFileURL, toURL, urlBasename, urlDirname, urlOrReferenceToUrl, writeToFile, writeToFileIterable, writeToFileIterable as writeToFileIterableP };
|
|
520
|
+
export { type BufferEncoding, CFileReference, CFileResource, type CSpellIO, CSpellIONode, FSCapabilityFlags, type Stats, type TextEncoding, type VFileSystem, type VFileSystemCore, type VFileSystemProvider, FileType as VFileType, type VFindEntryType, type VFindUpPredicate, type VFindUpURLOptions, type VProviderFileSystem, type VfsDirEntry, type VfsStat, type VirtualFS, toArray as asyncIterableToArray, compareStats, createRedirectProvider, fromFileResource as createTextFileResource, createVirtualFS, encodeDataUrl, getDefaultCSpellIO, getDefaultVirtualFs, getStat, getStatSync, isFileURL, isUrlLike, readFileText, readFileTextSync, renameFileReference, renameFileResource, toDataUrl, toFileURL, toURL, urlBasename, urlDirname, urlOrReferenceToUrl, writeToFile, writeToFileIterable, writeToFileIterable as writeToFileIterableP };
|
|
522
521
|
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public",
|
|
5
5
|
"provenance": true
|
|
6
6
|
},
|
|
7
|
-
"version": "9.
|
|
7
|
+
"version": "9.2.0",
|
|
8
8
|
"description": "A library of useful I/O functions used across various cspell tools.",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"sideEffects": false,
|
|
@@ -56,8 +56,8 @@
|
|
|
56
56
|
"vitest-fetch-mock": "^0.4.5"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@cspell/cspell-service-bus": "9.
|
|
60
|
-
"@cspell/url": "9.
|
|
59
|
+
"@cspell/cspell-service-bus": "9.2.0",
|
|
60
|
+
"@cspell/url": "9.2.0"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "6004e6a19e11985bc61e6578846195be07365049"
|
|
63
63
|
}
|