@tryhamster/gerbil 1.0.0-rc.13 → 1.0.0-rc.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/dist/browser/index.d.ts +2 -2
- package/dist/browser/index.d.ts.map +1 -1
- package/dist/browser/index.js +21 -5
- package/dist/browser/index.js.map +1 -1
- package/dist/cli.mjs +3 -2
- package/dist/cli.mjs.map +1 -1
- package/dist/frameworks/react.d.mts.map +1 -1
- package/dist/skills/index.d.mts +5 -5
- package/dist/skills/index.d.mts.map +1 -1
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -24,7 +24,7 @@ import SelectInput from "ink-select-input";
|
|
|
24
24
|
import TextInput from "ink-text-input";
|
|
25
25
|
|
|
26
26
|
//#region package.json
|
|
27
|
-
var version = "1.0.0-rc.
|
|
27
|
+
var version = "1.0.0-rc.14";
|
|
28
28
|
|
|
29
29
|
//#endregion
|
|
30
30
|
//#region src/cli/repl/auto-update.ts
|
|
@@ -8714,7 +8714,6 @@ function App({ initialView = "menu", forcedDevice } = {}) {
|
|
|
8714
8714
|
downloadStatus: p.file ? `${p.file} ${p.progress || 0}%` : p.status || ""
|
|
8715
8715
|
}));
|
|
8716
8716
|
} });
|
|
8717
|
-
await tempGerbil.dispose();
|
|
8718
8717
|
setState((s) => ({
|
|
8719
8718
|
...s,
|
|
8720
8719
|
downloadStatus: `[done] Downloaded ${modelId}`
|
|
@@ -8734,6 +8733,8 @@ function App({ initialView = "menu", forcedDevice } = {}) {
|
|
|
8734
8733
|
downloadStatus: ""
|
|
8735
8734
|
})), 3e3);
|
|
8736
8735
|
return false;
|
|
8736
|
+
} finally {
|
|
8737
|
+
await tempGerbil.dispose();
|
|
8737
8738
|
}
|
|
8738
8739
|
};
|
|
8739
8740
|
return /* @__PURE__ */ jsxs(Box, {
|