@lowfat/log 0.3.0 → 0.3.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.
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -45,7 +45,7 @@ var Log = class Log {
|
|
|
45
45
|
console.debug(Log.#prefix(), Log.#clr(Log.colors.MAGENTA, message.join(" ")));
|
|
46
46
|
}
|
|
47
47
|
/** Updates the static value for maximum column count. */
|
|
48
|
-
static #setMaxColumns(label, padding =
|
|
48
|
+
static #setMaxColumns(label, padding = 8) {
|
|
49
49
|
Log.#maxColumns = process.stdout.columns - label.length - padding;
|
|
50
50
|
}
|
|
51
51
|
/** Sets up a listener to listen for output window size changes to adjust column count. */
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"url": "https://lowfatprophet.netlify.app"
|
|
6
6
|
},
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@lowfat/utils": "^0.0
|
|
8
|
+
"@lowfat/utils": "^1.0.0"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
11
|
"@biomejs/biome": "^2.4.14",
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
},
|
|
29
29
|
"type": "module",
|
|
30
30
|
"types": "./dist/index.d.mts",
|
|
31
|
-
"version": "0.3.
|
|
31
|
+
"version": "0.3.2"
|
|
32
32
|
}
|