UNPKG

@lingui/cli

Version:

Lingui CLI to extract messages, compile catalogs, and manage translation workflows

14 lines (13 loc) 242 B
export class WorkerLogger { errors = []; error(msg) { this.errors.push(msg); } flush() { const errors = this.errors.join("\n"); this.errors = []; return { errors, }; } }