rimuru-ai 1.19.4 → 1.19.5
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
|
@@ -33,6 +33,7 @@ import type {
|
|
|
33
33
|
RunTuiConfig,
|
|
34
34
|
} from "./types"
|
|
35
35
|
import { formatModelLabel } from "./variant.shared"
|
|
36
|
+
import { RunFooter } from "./footer"
|
|
36
37
|
|
|
37
38
|
// Register the spinner component on @opentui/solid's shared componentCatalogue.
|
|
38
39
|
// The side-effect import "opentui-spinner/solid" calls extend() from
|
|
@@ -221,7 +222,6 @@ export async function createRuntimeLifecycle(input: LifecycleInput): Promise<Lif
|
|
|
221
222
|
model: input.model,
|
|
222
223
|
variant: input.variant,
|
|
223
224
|
})
|
|
224
|
-
const footerTask = import("./footer")
|
|
225
225
|
const wrote = queueSplash(
|
|
226
226
|
renderer,
|
|
227
227
|
state,
|
|
@@ -235,7 +235,6 @@ export async function createRuntimeLifecycle(input: LifecycleInput): Promise<Lif
|
|
|
235
235
|
)
|
|
236
236
|
await renderer.idle().catch(() => {})
|
|
237
237
|
|
|
238
|
-
const { RunFooter } = await footerTask
|
|
239
238
|
let closed = false
|
|
240
239
|
let sigintRegistered = false
|
|
241
240
|
|