@multiplatform.one/logger 6.7.0 → 7.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 +1 -2
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -10,8 +10,7 @@ Tauri, tagged with the precise platform name.
|
|
|
10
10
|
pnpm add @multiplatform.one/logger
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
platform-split entry point logs through the Tauri plugin).
|
|
13
|
+
No peer dependencies.
|
|
15
14
|
|
|
16
15
|
## What it owns
|
|
17
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@multiplatform.one/logger",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"description": "Platform-aware logger with pluggable transports for multiplatform.one",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"logger",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"loglevel": "^1.9.2",
|
|
41
|
-
"@multiplatform.one/platform": "
|
|
41
|
+
"@multiplatform.one/platform": "7.0.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"typescript": "~5.9.3"
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
},
|
|
54
54
|
"scripts": {
|
|
55
55
|
"typecheck": "tsgo --noEmit",
|
|
56
|
-
"build": "rm -rf types 2>/dev/null && tsc -p tsconfig.build.json"
|
|
56
|
+
"build": "rm -rf types 2>/dev/null && tsc -p tsconfig.build.json",
|
|
57
|
+
"test": "vitest run --coverage --coverage.provider=v8 --coverage.reporter=text --coverage.reporter=lcov --coverage.reporter=html"
|
|
57
58
|
}
|
|
58
59
|
}
|