You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pino-gris is now ESM-only and requires Node >= 22.12.
prefer the named export import { pinoGris } from 'pino-gris'; the default import pinoGris from 'pino-gris' still works
CommonJS can still require('pino-gris') on Node >= 22.12, but it now returns the namespace, so use const { pinoGris } = require('pino-gris') (or .default), not const pinoGris = require('pino-gris')