Skip to content

Commit bfa0319

Browse files
author
craigparra
committed
1.0.7 / 2021-07-14
================== * Removed top-level export of WinstonLogger - @craigparra
1 parent 25bc988 commit bfa0319

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

History.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.0.7 / 2021-07-14
2+
==================
3+
4+
* Removed top-level export of WinstonLogger - @craigparra
5+
16
1.0.6 / 2021-07-14
27
==================
38

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,9 @@ While the LoggerFactory uses sensible defaults, it is flexible and pluggable. T
7070
[winston](https://www.npmjs.com/package/winston) package you can pass a `WinstonLogger` provider to the `getLogger`
7171
function, passing it your winston options (nullish options will fall back to defaults).
7272

73-
>Be aware [winston](https://www.npmjs.com/package/winston) is not included as a package dependency for
74-
> [@alt-javascript/logger](https://www.npmjs.com/package/@alt-javascript/logger) to keep it light-weight.
73+
>Be aware the WinstonLogger is not exported by default, and [winston](https://www.npmjs.com/package/winston) is not
74+
> included as a package dependency for [@alt-javascript/logger](https://www.npmjs.com/package/@alt-javascript/logger)
75+
> to keep it light-weight.
7576
7677

7778
```javascript

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ module.exports.LoggerFactory = require('./LoggerFactory');
99
module.exports.LoggerLevel = require('./LoggerLevel');
1010
module.exports.LoggerRegistry = require('./LoggerRegistry');
1111
module.exports.PlainTextFormatter = require('./PlainTextFormatter');
12-
module.exports.WinstonLogger = require('./WinstonLogger');
13-
module.exports.WinstonLogger = require('./WinstonLogger');
12+
13+

0 commit comments

Comments
 (0)