-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
v0.4.0 #333
v0.4.0 #333
Conversation
stuft2
commented
Apr 5, 2023
•
edited
Loading
edited
- BREAKING CHANGE: Drop node 12 support
- BREAKING CHANGE: Drop support for Pino v6
- chore(deps): update dependencies
- chore(license): update year
- feat: export ByuLogger
- fix: improve type check
- style: lint test
Codecov Report
@@ Coverage Diff @@
## main #333 +/- ##
==========================================
+ Coverage 77.27% 80.00% +2.72%
==========================================
Files 2 2
Lines 22 25 +3
Branches 6 6
==========================================
+ Hits 17 20 +3
Misses 5 5
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
@@ -1,9 +1,9 @@ | |||
import Pino from 'pino' | |||
import { getLevel, isInstalled } from './util' | |||
import { Logger, LoggerOptions, pino } from 'pino' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is preferred over default exports. I was seeing the same error as in this issue when trying to import pino and our logger in an ES Module: pinojs/pino#1452 (comment)