Comparing version 8.15.5 to 8.15.6
'use strict' | ||
module.exports = { version: '8.15.5' } | ||
module.exports = { version: '8.15.6' } |
{ | ||
"name": "pino", | ||
"version": "8.15.5", | ||
"version": "8.15.6", | ||
"description": "super fast, all natural json logger", | ||
@@ -5,0 +5,0 @@ "main": "pino.js", |
'use strict' | ||
const { Writable } = require('stream') | ||
const fs = require('fs') | ||
module.exports = (options) => { | ||
@@ -8,3 +9,4 @@ const myTransportStream = new Writable({ | ||
write (chunk, enc, cb) { | ||
console.log(chunk.toString()) | ||
// Bypass console.log() to avoid flakyness | ||
fs.writeSync(1, chunk.toString()) | ||
cb() | ||
@@ -11,0 +13,0 @@ } |
@@ -463,3 +463,2 @@ 'use strict' | ||
} | ||
await immediate() | ||
not(strip(actual).match(/Hello/), null) | ||
@@ -466,0 +465,0 @@ }) |
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
682946
13335
52