Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit ebb1599

Browse files
author
Michal Vlasák
committed
Fix lint and update changelog
1 parent f79efe0 commit ebb1599

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
## [Unpublished]
22

3+
### Fixed
4+
- lint issue due to changes in tslint 5.12.0
5+
- stream write function type
6+
7+
### Added
8+
- coveralls integration
9+
310
## [1.0.3] - 2018-11-08
411

512
### Fixed

src/declarations.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ declare module 'pick-deep' {
88
export = pickDeep;
99
}
1010

11-
declare module 'pino-multi-stream' {
12-
13-
}
11+
declare module 'pino-multi-stream' {}
1412

1513
// there is a @typed/pino-multi-stream package, but it has wrong type in its Streams definition. So until its fixed, we use this
1614
/* declare module 'pino-multi-stream' {

src/streams.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class DefaultTransformStream extends Transform {
2222
}
2323
}
2424

25-
const decorateStreams = <T extends Transform>(streams: AckeeLoggerStream[], streamClass: new () => T ) => {
25+
const decorateStreams = <T extends Transform>(streams: AckeeLoggerStream[], streamClass: new () => T) => {
2626
return streams.map(stream => {
2727
const newStream = new streamClass();
2828
newStream.pipe(stream.stream);

0 commit comments

Comments
 (0)