@guritso/terminal 1.1.3 → 1.1.4
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/lib/cjs/terminal.cjs +3 -3
- package/lib/terminal.js +3 -3
- package/package.json +2 -2
package/lib/cjs/terminal.cjs
CHANGED
|
@@ -117,9 +117,9 @@ function formatUrl(host, port) {
|
|
|
117
117
|
const terminal = {
|
|
118
118
|
verbose: 2,
|
|
119
119
|
levels: {
|
|
120
|
-
info: color("%H100 INFO
|
|
121
|
-
fail: color("%H41 FAIL
|
|
122
|
-
pass: color("%H42 PASS
|
|
120
|
+
info: color("%H100 INFO %H"),
|
|
121
|
+
fail: color("%H41 FAIL %H"),
|
|
122
|
+
pass: color("%H42 PASS %H"),
|
|
123
123
|
},
|
|
124
124
|
};
|
|
125
125
|
|
package/lib/terminal.js
CHANGED
|
@@ -30,9 +30,9 @@ import { readFileSync } from "fs";
|
|
|
30
30
|
const terminal = {
|
|
31
31
|
verbose: 2,
|
|
32
32
|
levels: {
|
|
33
|
-
info: co("%H100 INFO
|
|
34
|
-
fail: co("%H41 FAIL
|
|
35
|
-
pass: co("%H42 PASS
|
|
33
|
+
info: co("%H100 INFO %H"),
|
|
34
|
+
fail: co("%H41 FAIL %H"),
|
|
35
|
+
pass: co("%H42 PASS %H"),
|
|
36
36
|
},
|
|
37
37
|
};
|
|
38
38
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@guritso/terminal",
|
|
3
3
|
"description": "A terminal node utility for enhanced logging and error handling",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.4",
|
|
5
5
|
"main": "index.cjs",
|
|
6
6
|
"module": "index.js",
|
|
7
7
|
"types": "index.d.ts",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"author": "GuriTso",
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"jest": "^29.7.0",
|
|
35
|
-
"rollup": "^4.
|
|
35
|
+
"rollup": "^4.38.0"
|
|
36
36
|
},
|
|
37
37
|
"directories": {
|
|
38
38
|
"lib": "lib",
|