@kevisual/cli 0.1.25 → 0.1.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/dist/assistant-opencode.js +1572 -271
- package/dist/assistant-server.js +1076 -254
- package/dist/assistant.js +616 -112
- package/dist/envision.js +2 -2
- package/package.json +1 -1
- package/readme.md +1 -0
package/dist/envision.js
CHANGED
|
@@ -22530,8 +22530,8 @@ InitEnv.init();
|
|
|
22530
22530
|
var version = useContextKey("version", () => {
|
|
22531
22531
|
let version2 = "0.0.64";
|
|
22532
22532
|
try {
|
|
22533
|
-
if ("0.1.
|
|
22534
|
-
version2 = "0.1.
|
|
22533
|
+
if ("0.1.26")
|
|
22534
|
+
version2 = "0.1.26";
|
|
22535
22535
|
} catch (e) {}
|
|
22536
22536
|
return version2;
|
|
22537
22537
|
});
|
package/package.json
CHANGED