@trebired/logger 2.5.12 → 2.5.14
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/CHANGELOG.md +9 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,15 @@ All notable changes to `@trebired/logger` will be documented here.
|
|
|
4
4
|
|
|
5
5
|
This project follows semantic versioning once published.
|
|
6
6
|
|
|
7
|
+
## 2.5.14
|
|
8
|
+
|
|
9
|
+
- Refreshed package dependency ranges and lockfile state with `bun update` after adopting the `.trebired/code-discipline` structure.
|
|
10
|
+
|
|
11
|
+
## 2.5.13
|
|
12
|
+
|
|
13
|
+
- Moved Code Discipline config, alias-map state, generated tsconfig paths, and reports to `.trebired/code-discipline/`.
|
|
14
|
+
- Updated the `@trebired/code-discipline` devDependency to `^4.10.0`.
|
|
15
|
+
|
|
7
16
|
## 2.5.12
|
|
8
17
|
|
|
9
18
|
- Updated Code Discipline configuration to the `imports` rule with dead import removal enabled.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trebired/logger",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.14",
|
|
4
4
|
"description": "Local-first JSONL logger with durable writes, partitions, export archives, native storage acceleration, redaction, query helpers, and browser runtimes.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -53,20 +53,20 @@
|
|
|
53
53
|
"verify:pack": "bun ./scripts/verify/pack.mjs"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@package/result": "npm:@trebired/result@^1.1.
|
|
56
|
+
"@package/result": "npm:@trebired/result@^1.1.6",
|
|
57
57
|
"fflate": "^0.8.3",
|
|
58
58
|
"tar-stream": "^3.2.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@trebired/code-discipline": "^4.
|
|
62
|
-
"@types/bun": "^1.3.
|
|
63
|
-
"@types/node": "^24.
|
|
64
|
-
"@types/react": "^19.2.
|
|
61
|
+
"@trebired/code-discipline": "^4.10.1",
|
|
62
|
+
"@types/bun": "^1.3.14",
|
|
63
|
+
"@types/node": "^24.13.3",
|
|
64
|
+
"@types/react": "^19.2.18",
|
|
65
65
|
"@types/react-test-renderer": "^19.1.0",
|
|
66
66
|
"@types/tar-stream": "^3.1.4",
|
|
67
|
-
"react": "^19.2.
|
|
68
|
-
"react-test-renderer": "^19.2.
|
|
69
|
-
"typescript": "^6.0.
|
|
67
|
+
"react": "^19.2.8",
|
|
68
|
+
"react-test-renderer": "^19.2.8",
|
|
69
|
+
"typescript": "^6.0.3"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
72
|
"react": ">=18"
|