Logger for pnpm
> Logger for pnpm

``sh`
pnpm add @pnpm/logger
@pnpm/logger is mostly just a wrapper over bole.streamParser
Logging is done the same way as in bole. To listed for logs, use or createcreateStreamParser()
a new parser with .
`typescript
import logger, {streamParser} from '@pnpm/logger'
logger.debug({ foo: 'bar' })
streamParser.on('data', msg => {
// ...
})
``
MIT