@guritso/terminal 1.1.3 → 1.2.1

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/README.md CHANGED
@@ -4,7 +4,7 @@ A terminal node utility for enhanced logging and error handling.
4
4
 
5
5
  | example |
6
6
  | ------- |
7
- | ![example](https://i.ibb.co/WHD4mXn/guritso-terminal-preview.png) |
7
+ | ![example](./docs/guritso-terminal-preview.png) |
8
8
 
9
9
  ## Installation
10
10
 
@@ -117,9 +117,9 @@ function formatUrl(host, port) {
117
117
  const terminal = {
118
118
  verbose: 2,
119
119
  levels: {
120
- info: color("%H100 INFO:%H"),
121
- fail: color("%H41 FAIL:%H"),
122
- pass: color("%H42 PASS:%H"),
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:%H"),
34
- fail: co("%H41 FAIL:%H"),
35
- pass: co("%H42 PASS:%H"),
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.3",
4
+ "version": "1.2.1",
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.22.4"
35
+ "rollup": "^4.38.0"
36
36
  },
37
37
  "directories": {
38
38
  "lib": "lib",