rotating-file-stream
Advanced tools
Comparing version 1.4.2 to 1.4.3
@@ -0,1 +1,4 @@ | ||
- 2019-07-23 - v1.4.3 | ||
- Exported the options interface | ||
- devDependencies update | ||
- 2019-06-27 - v1.4.2 | ||
@@ -2,0 +5,0 @@ - Fixed a [bug causing a ERR_MULTIPLE_CALLBACK error](https://github.com/iccicci/rotating-file-stream/issues/36) (thanks to [rooftopsparrow](https://github.com/rooftopsparrow)) |
import { WriteStream } from "fs"; | ||
interface RfsOptions { | ||
export interface RfsOptions { | ||
compress?: string | Function | boolean; | ||
@@ -5,0 +5,0 @@ highWaterMark?: number; |
{ | ||
"name": "rotating-file-stream", | ||
"version": "1.4.2", | ||
"version": "1.4.3", | ||
"description": "Opens a stream.Writable to a file rotated by interval and/or size. A logrotate alternative.", | ||
@@ -37,8 +37,8 @@ "scripts": { | ||
"devDependencies": { | ||
"eslint": "6.0.1", | ||
"mocha": "6.1.4", | ||
"eslint": "6.1.0", | ||
"mocha": "6.2.0", | ||
"nyc": "14.1.1", | ||
"typescript": "3.5.2", | ||
"@types/node": "12.0.10" | ||
"typescript": "3.5.3", | ||
"@types/node": "12.6.8" | ||
} | ||
} |
43393