@renpwn/simplelog 0.0.2 → 0.0.3

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/package.json +1 -1
  2. package/src/Formatter.js +0 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@renpwn/simplelog",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Lightweight, safe, audit-friendly logger for CLI tools and long-running Node.js processes",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
package/src/Formatter.js CHANGED
@@ -63,8 +63,6 @@ const BG = Object.assign({
63
63
 
64
64
  export function format(text, style, tty = true) {
65
65
  if (!tty || !style) return text
66
- COLORS = COLORS.concat(EXT)
67
- BG = BG.concat(EXT)
68
66
 
69
67
  const codes = []
70
68
  if (style.bold) codes.push(1)