@loglayer/transport-pretty-terminal 3.1.2 → 4.0.0
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 +2 -2
- package/package.json +11 -12
package/README.md
CHANGED
|
@@ -17,9 +17,9 @@ A transport for the [LogLayer](https://loglayer.dev) logging library that pretty
|
|
|
17
17
|
- 💅 **JSON Pretty Printing** - Beautifully formatted structured data with syntax highlighting
|
|
18
18
|
- 🎭 **Configurable Themes** - Choose from pre-built themes or customize your own colors
|
|
19
19
|
|
|
20
|
-
## Next.js support
|
|
20
|
+
## Next.js / browser support
|
|
21
21
|
|
|
22
|
-
The Pretty Terminal does not work in Next.js as Pretty Terminal has dependencies that are incompatible with
|
|
22
|
+
The Pretty Terminal does not work in a browser or Next.js as Pretty Terminal has dependencies that are incompatible with
|
|
23
23
|
in a Next.js environment.
|
|
24
24
|
|
|
25
25
|
Use [Simple Pretty terminal](https://loglayer.dev/transports/simple-pretty-terminal) instead.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loglayer/transport-pretty-terminal",
|
|
3
3
|
"description": "Interactive pretty log output in the terminal for the LogLayer logging library.",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "4.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.js",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"transport"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"better-sqlite3": "
|
|
38
|
-
"chalk": "5.
|
|
39
|
-
"cli-truncate": "
|
|
37
|
+
"better-sqlite3": "12.2.0",
|
|
38
|
+
"chalk": "5.6.0",
|
|
39
|
+
"cli-truncate": "5.0.0",
|
|
40
40
|
"keypress": "0.2.1",
|
|
41
41
|
"wrap-ansi": "9.0.0",
|
|
42
42
|
"@loglayer/shared": "2.3.1",
|
|
@@ -46,15 +46,14 @@
|
|
|
46
46
|
"@types/better-sqlite3": "7.6.13",
|
|
47
47
|
"@types/express": "5.0.3",
|
|
48
48
|
"@types/keypress": "2.0.30",
|
|
49
|
-
"@types/node": "
|
|
50
|
-
"express": "
|
|
51
|
-
"hash-runner": "2.0.1",
|
|
49
|
+
"@types/node": "24.3.1",
|
|
50
|
+
"express": "5.1.0",
|
|
52
51
|
"serialize-error": "12.0.0",
|
|
53
52
|
"tsup": "8.5.0",
|
|
54
|
-
"tsx": "4.20.
|
|
55
|
-
"typescript": "5.
|
|
53
|
+
"tsx": "4.20.5",
|
|
54
|
+
"typescript": "5.9.2",
|
|
56
55
|
"@internal/tsconfig": "2.1.0",
|
|
57
|
-
"loglayer": "6.
|
|
56
|
+
"loglayer": "6.6.0"
|
|
58
57
|
},
|
|
59
58
|
"bugs": "https://github.com/loglayer/loglayer/issues",
|
|
60
59
|
"engines": {
|
|
@@ -66,9 +65,9 @@
|
|
|
66
65
|
"homepage": "https://loglayer.dev",
|
|
67
66
|
"scripts": {
|
|
68
67
|
"build": "tsup src/index.ts",
|
|
69
|
-
"build:dev": "hash-runner",
|
|
70
68
|
"clean": "rm -rf .turbo node_modules dist",
|
|
71
|
-
"lint": "biome check --write --unsafe src
|
|
69
|
+
"lint": "biome check --no-errors-on-unmatched --write --unsafe src",
|
|
70
|
+
"lint:staged": "biome check --no-errors-on-unmatched --write --unsafe --staged src",
|
|
72
71
|
"verify-types": "tsc --noEmit",
|
|
73
72
|
"livetest": "tsx src/__tests__/livetest.ts"
|
|
74
73
|
}
|