colorino 0.12.1 → 0.12.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -326,7 +326,7 @@ export function createContextLogger(
326
326
  const logger = Object.create(base) as Colorino // Object.create uses `base` as the prototype.
327
327
 
328
328
  // ...and override only what you need.
329
- Object.assign(logger, { // Object.assign copies these methods onto `logger`. [web:346]
329
+ Object.assign(logger, { // Object.assign copies these methods onto `logger`.
330
330
  info(...args: unknown[]) {
331
331
  base.info(`[${getCallerContext()}]`, ...args)
332
332
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "colorino",
3
- "version": "0.12.1",
3
+ "version": "0.12.2",
4
4
  "description": "A super simple colorized logger that gets the most out of your terminal",
5
5
  "type": "module",
6
6
  "license": "MIT",