cspell-io
Advanced tools
Comparing version 5.0.1-alpha.11 to 5.0.1-alpha.12
@@ -10,18 +10,18 @@ # Change Log | ||
# Change log | ||
## [4.0.0] | ||
* **Breaking Changes** drops dependency upon rxjs and moves to [AsyncIterator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/asyncIterator) | ||
- **Breaking Changes** drops dependency upon rxjs and moves to [AsyncIterator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/asyncIterator) | ||
## [3.05] | ||
* Update dependencies and use `rxjs-stream` for reading files. | ||
- Update dependencies and use `rxjs-stream` for reading files. | ||
## [3.0.0] | ||
* Move to RxJs 6 (this is a breaking change) | ||
- Move to RxJs 6 (this is a breaking change) | ||
## [2.x] | ||
* Original versions. | ||
- Original versions. |
/// <reference types="node" /> | ||
import * as fs from 'fs'; | ||
export declare function writeToFile(filename: string, data: string): fs.WriteStream; | ||
export declare function writeToFileIterable(filename: string, data: Iterable<string>): fs.WriteStream; | ||
export declare function writeToFile(filename: string, data: string): NodeJS.WritableStream; | ||
export declare function writeToFileIterable(filename: string, data: Iterable<string>): NodeJS.WritableStream; | ||
export declare function writeToFileIterableP(filename: string, data: Iterable<string>): Promise<void>; |
{ | ||
"name": "cspell-io", | ||
"version": "5.0.1-alpha.11", | ||
"version": "5.0.1-alpha.12", | ||
"description": "A library of useful I/O functions used across various cspell tools.", | ||
@@ -43,5 +43,9 @@ "main": "dist/index.js", | ||
"devDependencies": { | ||
"@types/fs-extra": "^9.0.3", | ||
"@types/node": "^14.14.6", | ||
"fs-extra": "^9.0.1", | ||
"lorem-ipsum": "^2.0.3", | ||
"rimraf": "^3.0.2" | ||
}, | ||
"gitHead": "500477f91a8835156c1842af6555df1fe1e6893a" | ||
"gitHead": "347018e778a780ecfb2754435c7cf665b3f9823c" | ||
} |
# cspell-lib | ||
A library of useful functions used across various cspell tools. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12642
4
5
242