@typed-assistant/builder 0.0.49 → 0.0.51
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typed-assistant/builder",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.51",
|
|
4
4
|
"exports": {
|
|
5
5
|
"./appProcess": "./src/appProcess.tsx",
|
|
6
6
|
"./bunInstall": "./src/bunInstall.tsx",
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"home-assistant-js-websocket": "^8.2.0",
|
|
25
25
|
"ts-toolbelt": "^9.6.0",
|
|
26
26
|
"typescript": "^5.3.3",
|
|
27
|
-
"@typed-assistant/typescript-config": "0.0.8",
|
|
28
27
|
"@typed-assistant/eslint-config": "0.0.8",
|
|
29
|
-
"@typed-assistant/logger": "0.0.
|
|
28
|
+
"@typed-assistant/logger": "0.0.16",
|
|
29
|
+
"@typed-assistant/typescript-config": "0.0.8",
|
|
30
30
|
"@typed-assistant/utils": "0.0.14"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
package/src/webserver/Logs.tsx
CHANGED
|
@@ -94,10 +94,7 @@ export const Logs = () => {
|
|
|
94
94
|
.sort((a, b) => b.time - a.time)
|
|
95
95
|
.map((log, index) => {
|
|
96
96
|
return (
|
|
97
|
-
<li
|
|
98
|
-
key={(log.time ?? index) + log.time + log.msg}
|
|
99
|
-
className="flex gap-1"
|
|
100
|
-
>
|
|
97
|
+
<li key={index + JSON.stringify(log)} className="flex gap-1">
|
|
101
98
|
<span className="text-slate-400 mr-2">
|
|
102
99
|
{dateTimeVisibility === "hidden"
|
|
103
100
|
? null
|
package/src/webserver/index.html
CHANGED