mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-28 20:11:48 -04:00
* chore: create @pnpm/logger * fix: workaround typescript error * chore: update manifests * chore(deps): link @pnpm/logger from workspace
10 lines
149 B
TypeScript
10 lines
149 B
TypeScript
import bole from 'bole'
|
|
|
|
export function writeToConsole (): void {
|
|
bole.output([
|
|
{
|
|
level: 'debug', stream: process.stdout,
|
|
},
|
|
])
|
|
}
|