@typed-assistant/builder 0.0.25 → 0.0.27
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 +5 -5
- package/src/appProcess.tsx +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typed-assistant/builder",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.27",
|
|
4
4
|
"exports": {
|
|
5
5
|
"./appProcess": "./src/appProcess.tsx",
|
|
6
6
|
"./bunInstall": "./src/bunInstall.tsx",
|
|
@@ -24,10 +24,10 @@
|
|
|
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/eslint-config": "0.0.
|
|
28
|
-
"@typed-assistant/logger": "0.0.
|
|
29
|
-
"@typed-assistant/
|
|
30
|
-
"@typed-assistant/
|
|
27
|
+
"@typed-assistant/eslint-config": "0.0.6",
|
|
28
|
+
"@typed-assistant/logger": "0.0.10",
|
|
29
|
+
"@typed-assistant/typescript-config": "0.0.6",
|
|
30
|
+
"@typed-assistant/utils": "0.0.9"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"home-assistant-js-websocket": "^8.2.0"
|
package/src/appProcess.tsx
CHANGED
|
@@ -67,7 +67,8 @@ const checkProcesses = async (
|
|
|
67
67
|
log(message)
|
|
68
68
|
log(ps)
|
|
69
69
|
onProcessError?.(message)
|
|
70
|
-
restartAddon()
|
|
70
|
+
// restartAddon()
|
|
71
|
+
return
|
|
71
72
|
}
|
|
72
73
|
} else {
|
|
73
74
|
multipleProcessesErrorCount = 0
|
|
@@ -80,7 +81,8 @@ const checkProcesses = async (
|
|
|
80
81
|
log(message)
|
|
81
82
|
log(ps)
|
|
82
83
|
onProcessError?.(message)
|
|
83
|
-
restartAddon()
|
|
84
|
+
// restartAddon()
|
|
85
|
+
return
|
|
84
86
|
}
|
|
85
87
|
} else {
|
|
86
88
|
noProcessesErrorCount = 0
|
|
@@ -107,6 +109,7 @@ export async function setup({
|
|
|
107
109
|
let subprocesses = await buildAndStartAppProcess(entryFile, {
|
|
108
110
|
mdiPaths: mdiPaths,
|
|
109
111
|
})
|
|
112
|
+
|
|
110
113
|
startWebappServer({
|
|
111
114
|
basePath,
|
|
112
115
|
getSubprocesses: () => subprocesses,
|